Hide field in datasheet view

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

I have a subform in datasheet view and I want to hide one of the fields so
that only certain fields display when the main form loads.

How can I do this?
 
I have a subform in datasheet view and I want to hide one of the fields so
that only certain fields display when the main form loads.

How can I do this?

Code the Form's Load event:
Me!FieldName.ColumnHidden = True

To show it again:
Me!FieldName.ColumnHidden = False
 

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