Hi
I have a database that includes a report where the date field changes to red and italic if its overdue. The code is:
If Me![TestDate] <= Now Then
Me![TestDate].FontItalic = True
Me![TestDate].FontBold = True
Me![TestDate].ForeColor = vbRed
Else...