Hide and Unhide a lable

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

Guest

I have a report that the user sets the what is/can be on the report. When the
user runs the report I would like to set it up so that if field [FLR_Q] is
not null you can see the labe that goes with it. How can I do this.

Thanks

Keith
 
In the Format event of the section that contains the textbox for FLR_Q
value, put this code:

Me.NameOfLabel.Visible = Not IsNull(Me.FLR_Q.Value)
 
Back
Top