My Activities report lists several date fields: Start Date, Write-up Date, and End Date. I need to display the Aging of each Activity. This is simply the number of days since the Start Date. I entered the Control Source as
=DateDiff("d",[Start Date],Date())
For some reason this is not working, and the result is as if I entered
=DateDiff("d",[End Date],Date())
as the Control Source.
Apparently it's reading the Start Date wrong! Strangely, the calculation works correctly if I use Write-up Date.
Additionally, [Start Date] alone displays OK, but "=[Start Date]" displays End Date, so I think the equals sign is causing a problem! I tried
DateDiff("d",[End Date],Date())
but got a syntax error (no "=")
Any reason why the equals sign could cause a display error?
=DateDiff("d",[Start Date],Date())
For some reason this is not working, and the result is as if I entered
=DateDiff("d",[End Date],Date())
as the Control Source.
Apparently it's reading the Start Date wrong! Strangely, the calculation works correctly if I use Write-up Date.
Additionally, [Start Date] alone displays OK, but "=[Start Date]" displays End Date, so I think the equals sign is causing a problem! I tried
DateDiff("d",[End Date],Date())
but got a syntax error (no "=")
Any reason why the equals sign could cause a display error?