Skip to main content

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?

I had this same problem yesterday! You just need to put single quotes around the date:


DATEADD('2/20/2018', -15, ‘days’)


It works! Thank you!


Reply