On the database that I am developing, I have a date column and I would like to create a report that I would use to calculate the number of months between todays date and the Effective Date. I used the following code as the control source of the report field but I am getting an error.
Code:
=DateDiff("m",[EffectiveDate],Date())
Comment