You could compare the Renewal Date with current date and activate a reminder message based on that comparison.
If you have a Welcome form or other form that is loaded when the DB is started you could do this in that form's On Load event with some code along the lines of;
Code:
If Me.YourReminderDate - 30 <= Date() Then
MsgBox "Renewal Reminder"
End If
You could compare the Renewal Date with current date and activate a reminder message based on that comparison.
If you have a Welcome form or other form that is loaded when the DB is started you could do this in that form's On Load event with some code along the lines of;
Code:
If Me.YourReminderDate - 30 <= Date() Then
MsgBox "Renewal Reminder"
End If
I have a contacts database and want a membership reminder 30 days before their year is up. In the contacts table i created a "start date" field and an "end date" field. How can i set a reminder 30 days before the "end date".?
Thank you for the reply. I guess the reply went to my spam folder. New question. I have the 2003 membership database and i want to set a pop up renewal date reminder that will open when the main switchboard opens. I have added a "renewal date field" to the members table. I want the reminder for 30 days before the date. Can you assist? the question is open to all those more knowledgeable than me.
Thank You, Thank You, Thank You~