Hide and Unhide a lable

K

KAnoe

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
 
K

Ken Snell [MVP]

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)
 
Top