A Abbosy Registered User. Local time Today, 11:27 Joined Dec 4, 2013 Messages 59 Dec 9, 2013 #1 Hi there Forum Can a Form/Query warn when a date is approaching; like in a pop up or any other behaviour? Many thanks
Hi there Forum Can a Form/Query warn when a date is approaching; like in a pop up or any other behaviour? Many thanks
jdraw Super Moderator Staff member Local time Today, 14:27 Joined Jan 23, 2006 Messages 15,533 Dec 9, 2013 #2 You can calculate how many days since or before date X, then display a message as appropriate. More info is required to give a more specific answer.
You can calculate how many days since or before date X, then display a message as appropriate. More info is required to give a more specific answer.
pr2-eugin Super Moderator Local time Today, 19:27 Joined Nov 30, 2011 Messages 8,494 Dec 9, 2013 #3 Yes what you need is quiet possible.. More information will help us to help you in the correct way.. EDIT: JD and I are 'peas in a pod' Last edited: Dec 9, 2013
Yes what you need is quiet possible.. More information will help us to help you in the correct way.. EDIT: JD and I are 'peas in a pod'
A Abbosy Registered User. Local time Today, 11:27 Joined Dec 4, 2013 Messages 59 Dec 10, 2013 #4 Thanks jdraw & Paul I set up a record to add "wanranty expiry date". I just need a reminder to pop up telling us that this customer has his warranty about to run out so we can approach the customer with a reminder. Many Thanks
Thanks jdraw & Paul I set up a record to add "wanranty expiry date". I just need a reminder to pop up telling us that this customer has his warranty about to run out so we can approach the customer with a reminder. Many Thanks
A Abbosy Registered User. Local time Today, 11:27 Joined Dec 4, 2013 Messages 59 Dec 10, 2013 #5 Hi again jdraw & Paul The warranty is a date/time field. If this is helping to know. Many Thanks
pr2-eugin Super Moderator Local time Today, 19:27 Joined Nov 30, 2011 Messages 8,494 Dec 10, 2013 #6 Is warranty expiry date calculated/depended on other fields in the table?
A Abbosy Registered User. Local time Today, 11:27 Joined Dec 4, 2013 Messages 59 Dec 10, 2013 #7 Hi Paul Thanks for your swift reply Yes it is calculated from a number "number of years warranty taken" * 365 + Date()
Hi Paul Thanks for your swift reply Yes it is calculated from a number "number of years warranty taken" * 365 + Date()
pr2-eugin Super Moderator Local time Today, 19:27 Joined Nov 30, 2011 Messages 8,494 Dec 10, 2013 #8 Okay delete the field in the table, and move the calculation to a Query. Then use that as the criteria to filter. Something like. Code: SELECT someFields, ((noOfYears * 365) + startDate) As expiryDate WHERE ((noOfYears * 365) + startDate) = Date(); The above Query will give everything that is expiring today.
Okay delete the field in the table, and move the calculation to a Query. Then use that as the criteria to filter. Something like. Code: SELECT someFields, ((noOfYears * 365) + startDate) As expiryDate WHERE ((noOfYears * 365) + startDate) = Date(); The above Query will give everything that is expiring today.