Sep 30, 2002 #1 3699wat Technical User Joined Sep 30, 2002 Messages 28 Location 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 Joined Aug 21, 2001 Messages 138 Location 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