A
Andy12
How do I conditionally format dates that are more than one year old?
How do I conditionally format dates that are more than one year old?
How do I conditionally format dates that are more than one year old?
fredg said:How do I conditionally format dates that are more than one year old?
In form design view, select the date control.
Click on Format + Conditional Formatting.
Set Condition1 to
Expression Is
In the next dialog box, write:
[ControlName]< DateAdd("yyyy",-1,Date())
Change [ControlName] to whatever the actual name of your control is.