Visible/Not Visible on reports

B

Bonnie

Using A02. I can use the visible/not visible in event
procedures on forms. But, I have a field on a report that
lays across grid lines and would like to use if null, not
visible so I don't have a blank spot in my grid. Can
anyone tell me if I'm missing something here? I know
getting rid of the grid lines would solve my problem but
they won't let me! They insist on having them.

Thanks in advance for any help or advice!!! I love you
guys!!!
 
M

Marshall Barton

Bonnie said:
Using A02. I can use the visible/not visible in event
procedures on forms. But, I have a field on a report that
lays across grid lines and would like to use if null, not
visible so I don't have a blank spot in my grid.


You can use the section's Format event to make controls
visible or not:

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

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