Membership Expired

P

Paul

I want a query which will display those dates that
expired last month and beyond.

The query shows the members ID, name and surname and
expiry date.

< Date() - only shows the expiry dates before present

What I do want is to display those dates that expired
last month and before that - in a real life example -
December and further ie '< todays month'

I tried < month(date()) - never worked

Thankx

Paul
 
J

John Slattery

You might consider this:

< DateSerial(Year(Now()), Month(Now()), 1)

You could substitute Date() for Now(), if you like.
 

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