G Guest Jun 1, 2005 #1 How do I hid a blank check box in a report. Want it to print if marked, hidden if blank?
G Guest Jun 1, 2005 #2 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.
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 Jun 1, 2005 #3 How do I hid a blank check box in a report. Want it to print if marked, hidden if blank? Click to expand... Code the Format event of whatever section the check box is in: [CheckBoxName].Visible = [CheckBoxName]
How do I hid a blank check box in a report. Want it to print if marked, hidden if blank? Click to expand... Code the Format event of whatever section the check box is in: [CheckBoxName].Visible = [CheckBoxName]