null value

jarheadjim

Registered User.
Local time
Today, 04:52
Joined
Mar 6, 2002
Messages
83
i want to print a report that shows me only incomplete data(any field blank). I run a tool check in/out room, and i need to be able to see what items are still out. thanx in advance for the help
 
Try Is Null in the criteria for the appropriate field in your query
 
i tried "is null" and "=null" in the criteria, but the report keeps coming back empty. i have the report pulling data from the query. any other thoughts?
 
Run your query by itself first to see if you're getting the correct results, then worry about getting the report working off of the query.

Null in the criteria box should work. Are they true nulls or possibly zero-length strings? Perhaps in the box underneath Null put "" (assuming this is a text field).

HTH,
David R
 
ok, that worked, but now it only looks at the first "is null", i have several fields i need it to look at and report on if any of them are blank...do i need a seperate query for each of those fields? thanks for the patience
biggrin.gif
 
OK Put Is Null in criteria for first field, (youve allready done that), then Is null in or(under criteria)etc. for each field. ie. each Is Null is on its own line in the criteria builder. If you use same line thats equal to and which you dont want.
HTH
 
For EACH field that you want to apply a criterion in an OR situation (i.e. if field1 is null OR field2 is null OR ...), put each criterion on a different ROW in the query design grid. You can insert more rows if you need them.
 

Users who are viewing this thread

Back
Top Bottom