Hi there, James! Welcome to the community!
You can absolutely do this. Let’s say we want to add one month, and subtract one day. I would write the formula like this:
IF({Date}, DATEADD(DATEADD({Date}, 1, 'month'), -1, 'day'))
If {Date} were today, 11/17/2019, the above would give us a result of 12/16/2019.
You could write this without wrapping it in the IF() statement, but I recommend using it to avoid getting #ERROR! when the field {Date} is empty
Hi there, James! Welcome to the community!
You can absolutely do this. Let’s say we want to add one month, and subtract one day. I would write the formula like this:
IF({Date}, DATEADD(DATEADD({Date}, 1, 'month'), -1, 'day'))
If {Date} were today, 11/17/2019, the above would give us a result of 12/16/2019.
You could write this without wrapping it in the IF() statement, but I recommend using it to avoid getting #ERROR! when the field {Date} is empty
That’s great, thanks!