Query of date

J

John M

I have a mdb that is membership based and I need to have a
query that sends a report to let me know when a membership
is due. I have a field with a due date in the table how can
I set so that the list of due memberships is displayed for
all dues for the following month in advance

Thanks for the help
 
J

John Vinson

I have a mdb that is membership based and I need to have a
query that sends a report to let me know when a membership
is due. I have a field with a due date in the table how can
I set so that the list of due memberships is displayed for
all dues for the following month in advance

Use a criterion on this duedate field of

BETWEEN Date() AND DateAdd("m", 1, Date())

or if you want to also see overdue members, just

<= DateAdd("m", 1, Date())
 

Ask a Question

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.

Ask a Question

Top