I'm using the following code in the event On Format of a report.
If Me.SalesTargetUsed = 0 Then Me.SalesActual.Visible = False
It works except for the fact it makes all the fields hidden after it finds the first one that meets the condition above. I want it to only apply to the fields that meet the condition through the whole report.
Thanks
If Me.SalesTargetUsed = 0 Then Me.SalesActual.Visible = False
It works except for the fact it makes all the fields hidden after it finds the first one that meets the condition above. I want it to only apply to the fields that meet the condition through the whole report.
Thanks