Date Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I will have a query that will give me the most recent date that each of my
contacts has been contacted.

I would like to print a report that will list each contact, and this date in
the format (month, year) IE April 2003.

What procedure do I need to set up the report to do this. Here is an
example of the table.

John Doe March 1997
April May September 2004
Gus Line July 2002
etc. etc.

Most specifically I am interested in the date format.

Thanks.
 
I've you have already the query, just use it as source for your report. Then
import the fields into the report....
 
I will have a query that will give me the most recent date that each of my
contacts has been contacted.

I would like to print a report that will list each contact, and this date in
the format (month, year) IE April 2003.

What procedure do I need to set up the report to do this. Here is an
example of the table.

John Doe March 1997
April May September 2004
Gus Line July 2002
etc. etc.

Most specifically I am interested in the date format.

Thanks.

In the report, set the Format property of the control that is
displaying the date field to:
mmmm yyyy
 
Back
Top