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

S

Student

How do I create a query in Access where all records with records that have no
description (nothing entered under description)
 
V

Van T. Dinh

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] = "")
 
Top