What criteria do I need to enter in order to print todays
results?
thanks,
Ted
That depends on how your table records what are "today's results". Do
you have a date/time field in the table? How is it filled?
GUESSING that you do, and that it has a default property of Date(),
just use a criterion of
=Date()
If the default is Now(), giving the exact date and time, use a
criterion of
If the table might have data from the future as well, use a criterion
of
=Date() AND < DateAdd("d", 1, Date())
If you don't have such a field, you can't do it at all; Access doesn't
know or care when the record was created.