RENEW DATE!

L

LadySugar

Greetings! I have a database in access that contains information
about the date members joined the company. Every year, membership
must be renewed for each member. Usually I will send out a standard
letter from a report to each member regardless of the date they
joined. Members are only supposed to receive letters an exact year
after they joined. I am wondering if it is possible for me to do a
setting that will let me to create reports and send letters that will
be a year from the exact date a member joined.
I will appreciate help in this

Regards,
L.S
 
K

kingston via AccessMonster.com

How about creating a procedure that you run once a week based on a query that
does something like:

SELECT MemberInfo FROM Members WHERE "#" & Month([JoinDate]) & "/" & Day(
[JoinDate]) & "/" & Year(Date()) & "#" Between Date()-6 And Date();

This would return a list of members whose anniversary was in the past week.
 
J

John W. Vinson

Criteria on JoinedDate---

This will subtract one year from current date ( Date() ) and check if
JoinedDate is greater or equal.

I think Karl meant to say "yyyy" - very confusingly, the "y" operand means one
day (a day of the year I guess).

John W. Vinson [MVP]
 
J

John W. Vinson

I have made the same mistake several time before.

and that's exactly why I remember it now... that little pest has bitten me
several times!

John W. Vinson [MVP]
 

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