View Single Post
  #2  
Old May 28th, 2010, 08:42 AM posted to microsoft.public.access.reports
Wolfgang Kais[_4_]
external usenet poster
 
Posts: 18
Default Force the group footer to print on the first page

Hello "VBNovice10".

"VBNovice10" wrote:
Hello,

Does anyone know how to force the group footer to print only on the first
page of an Access 2007 Report?


You could try to change the visibility of the group footer section in it's
format event, using a line like this:

Me.NameOfTheGroupFooterSection.Visible = (Me.Page = 1)

--
Regards,
Wolfgang