Hi all,
I have a select query like this:
This presents in a list box of items that require follow-up - the user selects the tracking date. I would like the dates that are within 5 days of expiring to show in red text. A second feature might be to add an on open event that can email a user that a date is about to expire, but that might be something for a different day.
As always, any help is much appreciated!
Tux
I have a select query like this:
Code:
SELECT qryTrackingDate.[Employee ID], qryTrackingDate.[Trace Date], qryTrackingDate.ELastName, qryTrackingDate.EFirstName FROM qryTrackingDate WHERE (((qryTrackingDate.[Trace Date])>Date())) ORDER BY qryTrackingDate.[Trace Date];
As always, any help is much appreciated!
Tux
Comment