field captions

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

Guest

when creating a report, data in some fields may not be available. how do I
make the field headings (captions) disappear (hide) when there is no data for
a field?
 
Use this code in the Format event of the section
containg the controls:

Me.yourtextbox.Visible = Not IsNull(Me.yourtextbox)

Chris
 

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