How to hide blank check box on access report

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I hid e blank check box in an access report... the other fields only
print if populated... but box always prints... I tried making the border
transparent...
 
On the "on print" event of the section where the check box is placed enter
the code

If me.checkbox = false then
me.checkbox.visible=false
else
me.checkbox.visible=false
end if
 
Put the following code in the Detail's Format event:
Me!NameOfCheckBox.Visible = Not IsNull(Me!NameOfCheckBox)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top