I have a subform that is based on a query that shows orders that are older than 7 days. I have a label that I want to become visible if the subform has any data. If not, then the label should not be visible. So far the only thing I have tried is basing the code on whether one of the fields...
I need help using the visibility feature.
I have a form and I want a label to become visible if the form has data in it, an invisible when it is blank. The code I have been trying is
If Me.Customer = Null Then
Me.Label29.Visible = False
Else
Me.Label29.Visible = True
End If
It...
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.