I have a query that checks the dates on policies to see of they are five years old or more.
<DateAdd("yyyy",-5,Date())
It works great. But, they want to be able to input the date to look backwards from instead of taking that current days date.
I tried <DateAdd("yyyy",-5,[Forms]![name of form]![text0])) and it didn't like it.
Any ideas?