Roy,
This was indeed the problem. My Empty field was not null, and instead = "". I set my code to be the following:
If field_1.Value="" Then
field_2.Visible = False
Else
field_2.Visible = True
End if
And it worked well.
Thanks for your help!
Bradley
This is interesting. I have some fields in a report that I would like to hide. If one field_1 is empty than I want to hide field_2. My code checks to see if field_1 in the "detail" is null and if so then it hides field_2:
If IsNull(field_1.Value)
Then field_2.Visible = False
Else...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.