Report-blank spaces and labels

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hell

I have a report formed in which I have labels associated with fields (data). Some of the fields are blank and taking up alot of space. I am intested only in the fields that have data. Is there a way to get rid of the blank spaces and associted labels when the field is null (blank). Any help would be greatly appreciated
 
Change the labels to text boxes and set their control sources to an
expression like:
="My Label Caption " + [MyField]
set the width of the "label" text box to show only the caption part and
don't allow it to grow. Set its Can Shrink property to Yes. Also set the
other text box to Can Shrink. If the field is Null, then the "label" and the
text box will both shrink.

--
Duane Hookom
MS Access MVP


svuono4 said:
Hello

I have a report formed in which I have labels associated with fields
(data). Some of the fields are blank and taking up alot of space. I am
intested only in the fields that have data. Is there a way to get rid of
the blank spaces and associted labels when the field is null (blank). Any
help would be greatly appreciated.
 

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

Back
Top