Try an IIF statement in your query, you can then it to give you a value, for example:-
IIF(critria,true,false) syntax
example
IIF(ISNULL(Field1),"Empty","OK")
this would show the word Empty if Field1 is null, and OK if it contains any other value. You can change these
This IIF...