N Nancy Jul 30, 2009 #1 How can I place a permanent filter to show only records (in form view) that have entries in a certain field.
How can I place a permanent filter to show only records (in form view) that have entries in a certain field.
K Klatuu Jul 30, 2009 #2 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.
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.