S
Sue
I have a database I open daily. In it, I include info about the birthday &
anniversary dates of folks I know. I'd like to create a macro (or code???)
that will do signal me when someone's birthday or anniversary is to take
place within the next 2 weeks.
The fields of interest are:
DOB = birthday
DOA = anniversary
CombinedDate = the result of a union table whose SQL statement is:
SELECT LastName, FirstName, "Birthday" As CardType, DOB As CombinedDate
FROM tblContacts
UNION ALL SELECT LastName,FirstName, "Anniversary" As CardType, DOA As
CombinedDate
FROM tblContacts
ORDER BY CombinedDate;
How would I go about this? CAN I go about this?
Thanks.
anniversary dates of folks I know. I'd like to create a macro (or code???)
that will do signal me when someone's birthday or anniversary is to take
place within the next 2 weeks.
The fields of interest are:
DOB = birthday
DOA = anniversary
CombinedDate = the result of a union table whose SQL statement is:
SELECT LastName, FirstName, "Birthday" As CardType, DOB As CombinedDate
FROM tblContacts
UNION ALL SELECT LastName,FirstName, "Anniversary" As CardType, DOA As
CombinedDate
FROM tblContacts
ORDER BY CombinedDate;
How would I go about this? CAN I go about this?
Thanks.