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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top