How to filter for access forms that only have entries in a field

N

Nancy

How can I place a permanent filter to show only records (in form view) that
have entries in a certain field.
 
K

Klatuu

You can do it in the form's record source query:

SELECT SomeField, AnotherField, AnyOldField, FROM MyTable WHERE AnyOldField
IS NOT NULL;

Or you can use the form's filter property to do the same thing.
 

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