Remove Label in Page Footer

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a label (lblWarning) in the Page Footer of a report. I want
lblWarning not to print on the first two pages but then print on all the
pages thereafter.

How can I do this?

thanks, Lamar
 
I have a label (lblWarning) in the Page Footer of a report. I want
lblWarning not to print on the first two pages but then print on all the
pages thereafter.

How can I do this?

thanks, Lamar

Code the Page Footer Format event:
Me![lblWarnings].Visible = Me.[Page] > 2
 
Back
Top