Remove Label in Page Footer

L

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
 
F

fredg

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
 
Top