Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to hide field on first page of report? 1

Status
Not open for further replies.

ffleitas

Technical User
Mar 15, 2001
85
US
Hello programmers,

How do you hide a field on page 1 of a report but not on the remaining of the report pages?

Thank you,
Felix
 
This should do it. In the Format Event for the section the textbox is in, try this
If Me.Page = 1 Then
Me.TextboxName.Visible = False
Else
Me.TextboxName.Visible = True
End If

Paul
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top