Blank fields in reports

G

Guest

Is there a way not to print fields in reports that do not have any data?
I've developed a form with checkboxes where the user either checks the box
for "yes" or leaves it blank for "no". Is there a way to print only the
boxes that contain a check box on my report? I don't want to see the blank
records?

Thank you.
 
S

SusanV

In the reports details section's format event:
if Me.Checkbox = True
Me.Checkbox.Visible = True
Else
Me.Checkbox.Visible = False
End If
 
S

SusanV

Oops forgot the "Then":

if Me.Checkbox = True Then
Me.Checkbox.Visible = True
Else
Me.Checkbox.Visible = False
End If
 

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

Top