The following code will not work for filtering records on a form:
DoCmd.ApplyFilt er , "Award =" & Not Null
I use the following line to filter for a series of Yes/No boxes without
trouble:
DoCmd.ApplyFilt er , "AttributeNativ e =" & True
If helpful, the field [Award] is a number field where a 4 digit year is
stored on some records.
DoCmd.ApplyFilt er , "Award =" & Not Null
I use the following line to filter for a series of Yes/No boxes without
trouble:
DoCmd.ApplyFilt er , "AttributeNativ e =" & True
If helpful, the field [Award] is a number field where a 4 digit year is
stored on some records.
Comment