Feb 03, 2021 09:40 AM
I am trying to use this to automatically add 15 or 5 days to the contract date. The “calculation” field is an IF statement to calculate which amount of days to add. BUT I cannot figure out how to get the formula to add the days and give me a new date.
Solved! Go to Solution.
Feb 03, 2021 09:43 AM
Hi @Julie_Anne_Stamps ,
The formula for adding a date is DateAdd({Contract Date},Calculation,‘days’)
Feb 03, 2021 09:43 AM
Hi @Julie_Anne_Stamps ,
The formula for adding a date is DateAdd({Contract Date},Calculation,‘days’)
Feb 03, 2021 09:51 AM
Its still not working the way I am wanting
Feb 03, 2021 09:53 AM
Notice how the formula you entered was not the one suggested to you. DATEADD()
needs to be told the unit of measurement of time to be added. As @Mohamed_Swellam said, you have to tell it to add 'days'
to the end.
Feb 03, 2021 09:55 AM
Thank you! I missed that.
Feb 03, 2021 09:56 AM
No problem. I would suggest marking Mohamed’s reply as the solution since it was the actual answer to your question.
Jul 11, 2023 01:55 PM