bradley1122
Technical User
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 field_2.Visible = True
End if
The code refuses to work. I am wondering...is a field that is empty in an access report really null? I have assumed that these empty fields are null...if I was mistaken then my code would be wrong.
Any Help Appreciated,
Bradley
If IsNull(field_1.Value)
Then field_2.Visible = False
Else field_2.Visible = True
End if
The code refuses to work. I am wondering...is a field that is empty in an access report really null? I have assumed that these empty fields are null...if I was mistaken then my code would be wrong.
Any Help Appreciated,
Bradley