Hi,
I am designing a procurement database. When we receive a quote for a piece of equipment, we have 30 days in which to order it. I have a field that counts down the number of days remaining that we have to order. Is there any way that after the 30 days are up, the database can prompt the user (if the equipment has not been ordered), asking them if the quote can be closed (a tick box)?
Also, should we order the equipment, is there any way of stopping the count down. The following is the code that is entered into the control source of the count down field:
=IIf(30+(DateDiff("d",Date(),[QuoteReceivedDate]))<=0,"Quote Expired",30+(DateDiff("d",Date(),[QuoteReceivedDate])))
Thanks in advance
I am designing a procurement database. When we receive a quote for a piece of equipment, we have 30 days in which to order it. I have a field that counts down the number of days remaining that we have to order. Is there any way that after the 30 days are up, the database can prompt the user (if the equipment has not been ordered), asking them if the quote can be closed (a tick box)?
Also, should we order the equipment, is there any way of stopping the count down. The following is the code that is entered into the control source of the count down field:
=IIf(30+(DateDiff("d",Date(),[QuoteReceivedDate]))<=0,"Quote Expired",30+(DateDiff("d",Date(),[QuoteReceivedDate])))
Thanks in advance