View Single Post
  #3  
Old June 2nd, 2010, 03:01 PM posted to microsoft.public.access.reports
VBNovice10
external usenet poster
 
Posts: 7
Default Force the group footer to print on the first page

Thank you for your help, but the code didn't work. The group footer still
did not appear on the first page. I may have to reconsider my report design.

Thank you again.

"Wolfgang Kais" wrote:

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


.