Feb 08, 2018 12:28 PM
I am using this code:
DATEADD(2/20/2018, -15, ‘days’)
If I change out the date to reference another column it will work. When I input this, all I get are #ERROR messages. What am I doing wrong?
Feb 08, 2018 01:22 PM
I had this same problem yesterday! You just need to put single quotes around the date:
DATEADD('2/20/2018', -15, ‘days’)
Feb 08, 2018 01:26 PM
It works! Thank you!