HIDING BLANK FIELDS IN REPORTS

E

executive514

I have an access report that has some blank fields. I would like those
fields to show on the report only if there is data in the field. How can I
do this?
 
M

Marshall Barton

executive514 said:
I have an access report that has some blank fields. I would like those
fields to show on the report only if there is data in the field.


Add code like this to the section's Format event procedure:

Me.somecontrol.Visible = (Nz(Me.somecontrol, "") = "")
 

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