Sep 30, 2002 #1 3699wat Technical User Sep 30, 2002 28 US I would like the labels on a report not to be visible if the corresponding box (textbox / memo) is empty (does not contain any text or data)
I would like the labels on a report not to be visible if the corresponding box (textbox / memo) is empty (does not contain any text or data)
Sep 30, 2002 #2 BusMgr IS-IT--Management Aug 21, 2001 138 US A simple if statement on On Report_Activate() If me.txtbox.value = "" then me.lblname.visible = false end if End Sub Upvote 0 Downvote
A simple if statement on On Report_Activate() If me.txtbox.value = "" then me.lblname.visible = false end if End Sub