Form is filtering on opening

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

Guest

I have a form that pulls from a table. For no reason, now when I open the
form it doesn't display the records unless I right click the form and remove
filters. I did not add any filters and ACCESS doesn't show any. Anyone know
how to have the form open without filtering?

Thanks
 
Add this line of code to the form's Open event procedure:
Me.FilterOn = False
 
I had this problem the other day. Check your form for an empty [Event
Procedure] in the OnOpen field.

If this doesn't work, ensure the Data Entry field of the form is set to "No"

Dave
 

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