how do i skip selective records when printing

A

AZLee

I would like to print selective records depending on a date field being empty
or not.
How can I do this in Access 2003?
 
F

fredg

I would like to print selective records depending on a date field being empty
or not.
How can I do this in Access 2003?

One way is to create a query to be used as the report's record source.

As criteria on the [DateField], write either:

Is Null

or..

Is Not Null

depending on which records you want.
 
Top