how do I query for all records with fields where the description .

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I create a query in Access where all records with records that have no
description (nothing entered under description)
 
Since Description is a Text Field, you may want to trap for both Null and
empty String.

The Query should have SQL something like:

SELECT [YourTable].*
FROM [YourTable]
WHERE
([YourTable].[Description] Is Null) OR
([YourTable].[Description] = "")
 

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

Back
Top