Hide check boxes in a report

K

ken

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

Jackie L

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.
 
F

fredg

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