Go into the QBE grid, include all relevant fields and on successive criteria rows enter "is null" under one field. This will give you SQL with "where FieldA is null or FieldB is null or ... etc
Note that Leslie did not put the IsNull on the same line for each field because that would have given you the records where all fields are null - an and condition.
The way she showed you it's an OR so that if any of the fields contain null the row will be returned.
Also, the assumption is that showing nothing means the field is Null. Without going into boring detail, Null is not the same as "" (nothing inside the quotes). If you set up the query as she indicated and do not get the expected results, you'll have to change IsNull, possibly to IsNull OR ""...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.