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

  • Thread starter Thread starter Nancy
  • Start date Start date
N

Nancy

How can I place a permanent filter to show only records (in form view) that
have entries in a certain field.
 
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.
 
Back
Top