Hi Stacie,
I am not sure if I understood well what you need to do, but I will try:
If you need to print a report and show only those records having something
recorded in some fields then use a query in order to filter those records,
and use it a record source in your report, e.g.
SELECT YourTableName.Field1, YourTableName.Filed2, YourTableName.Field3
FROM T_Rents
WHERE (((YourTableName.Field1) Is Not Null) AND ((YourTableName.Field2) Is
Not Null)) OR (((YourTableName.Field3) Is Not Null));
The result of the above will show:
All records having something recorded in field1 and field2 (both of them not
being null) and also those (the Or condition) records having something
recorded in field3.
Any further advise will be followed if needed.
Regards,
GeorgeCY
Ο χρήστης "Stacie" *γγραψε:
> I am trying to print a directory and have some entires that have many
> fields/data and others where that specific info is not available. How can I
> hide those fields that have no info available for some but print when the
> info is present?
|