Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

'No Data' Queries in Microsoft Access 2000

Status
Not open for further replies.

cbetofop

MIS
Nov 26, 2003
6
GB
Anyone know how to get MS Access to search (dates) to identify records with no data in the 'date' field and then to filter several criteria in the 'type' filed of the same table?
 
You can use
Code:
   WHERE [DateField] IS NULL
to find Date fields with no data and then just add other filters to the WHERE clause (i.e. WHERE DateField IS NULL AND ...)
 
Put "Is Null" in the criteria row under the date field in the query design window. Then put any additional criteria for the other fields.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top