Exclude entry when certain field is blank

D

dclarcq

In 2000, when running my report I need to leave out all entries when a
certain date field is missing data.
 
D

dclarcq

My apologies, that should be to leave out only the entries with the missing
date field.
 
D

dclarcq

Lynn, thanks for your reply. Maybe I should have placed this question under
New Users for my sake. In this report each record has 13 fields one being
named "proj-date". I would like the entire record to be invisible if the
proj-date field has no data.
Thanks again.
 
V

Vincent Johns

dclarcq said:
Lynn, thanks for your reply. Maybe I should have placed this question under
New Users for my sake. In this report each record has 13 fields one being
named "proj-date". I would like the entire record to be invisible if the
proj-date field has no data.
Thanks again.

:

Since this is a Report, another approach would be simply to include in
the report only the records with non-null Date fields. That could be
done by making the data source of the Report be a Query with a
definition something like this:

SELECT [Mailing List].*
FROM [Mailing List]
WHERE ((([Mailing List].proj-date) Is Not Null));

Then, if only 5 records have "proj-date" values, only those 5 records
are in the report, and no fields need to be made invisible.

-- Vincent Johns <[email protected]>
Please feel free to quote anything I say here.
 

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