Access Report Question

J

jasonpence

I have a problem with a report I have created in access. I have many
fileds whioch contain no data and I would like to hide the labels for
those empty fields in the report. Does anyone have any idea how to do
this?
 
D

Duane Hookom

Sounds like an un-normalized table structure but I could be wrong. If you
want to hide the label for a field named "MyField" when all of the records
contain a Null value for either a group or the report, change your label to
a text box with a control source like:
=IIf(Count([MyField])>0,"My Field Label",Null)

I have a feeling you might have additional requirements.
 

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