Hi everyone!
I am creating 2 forms. One form when you click a specific test, it will open another form which shows all the information about the test. Some tests does not have any information/not available so it will just show an empty textbox when there is no data. I want the empty field/textbox to be hidden if there is no data/null and only to be shown if it is not null.
I've tried using the After_Update event on the textbox but can't get it work:
If Me.txt42 = "" then
Me.txt42.visible = true
else
me.txt42.visible = false
End if