As stated, it is not possible to produce the desired effect in a list box.
By desired I mean
But there is always more than 1 way to skin a cat.
How about something like this........... just as an idea.
[code=sql]
SELECT qryTrackingDate .[Employee ID],
qryTrackingDate .[Trace Date],
DateDiff("d",Da te(),[Trace Date]) as DaysRemaining,
qryTrackingDate .ELastName,
qryTrackingDate .EFirstName
FROM qryTrackingDate
WHERE (((qryTrackingD ate.[Trace Date])>Date()))
ORDER BY qryTrackingDate .[Trace Date];
[/code]
Now the user can see how many days are remaining.
Not quite the same as highlighted red, but still effective
PS
I for one appreciate NeoPa's efforts and certainly do not see that he is bashing you. It really is difficult to get motivated to help someone when they don't even format posted code in a way that makes it readable.
Just take his Good advice onboard for future posts
Thanks Neopa
By desired I mean
I would like the dates that are within 5 days of expiring to show in red text
How about something like this........... just as an idea.
[code=sql]
SELECT qryTrackingDate .[Employee ID],
qryTrackingDate .[Trace Date],
DateDiff("d",Da te(),[Trace Date]) as DaysRemaining,
qryTrackingDate .ELastName,
qryTrackingDate .EFirstName
FROM qryTrackingDate
WHERE (((qryTrackingD ate.[Trace Date])>Date()))
ORDER BY qryTrackingDate .[Trace Date];
[/code]
Now the user can see how many days are remaining.
Not quite the same as highlighted red, but still effective
PS
I for one appreciate NeoPa's efforts and certainly do not see that he is bashing you. It really is difficult to get motivated to help someone when they don't even format posted code in a way that makes it readable.
Just take his Good advice onboard for future posts
Thanks Neopa
Comment