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]
 
Back
Top