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.
Well, in the Format Event of the detail section of your report, you want to
put code similar to what I posted below but add ALL the fields to the If
statement.
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.
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.