Only show records missing fields

E

Elizabeth

I am trying to run a query that will show me only records that are missing
fields, but I can not get it to work. Please help!
 
J

Jeff Boyce

Elizabeth

Please post the SQL of what you are using now...

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
K

KARL DEWEY

SELECT [YourTable].*
FROM [YourTable]
WHERE [Field1] Is Null OR [Field2] Is Null OR [Field3] Is Null;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top