Membership Expired

  • Thread starter Thread starter Paul
  • Start date Start date
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
 
You might consider this:

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

You could substitute Date() for Now(), if you like.
 
< CVDate("1/" & Format$(Now, "mmm/yyyy"))

should be what you want
 

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

Similar Threads

Non-Expiring Data Sim Card? 4
Membership Expired 2
Expiry Date 2
Problem with "IF" function 8
11 months for expiry 1
[REQ] Pop Up Message for Expired Date 0
Upcoming dates 6
Excel Excel-Conditional Formatting 0

Back
Top