Hide check boxes in a report

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

Guest

How do I hid a blank check box in a report. Want it to print if marked,
hidden if blank?
 
On the OnFormat property of your detail section put the following:

If Me.FieldName = False Then
Me.FieldName.Visible = False
Else
Me.FieldName.Visible = True
End If

Hope this helps.
 
How do I hid a blank check box in a report. Want it to print if marked,
hidden if blank?

Code the Format event of whatever section the check box is in:

[CheckBoxName].Visible = [CheckBoxName]
 

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