I have a date in CurDt and I want to add YrOffset to it and end up with a new date in a date format. YrOffset can be negative, positive or 0. I’m not sure how to do it.
Solved
Add or subtract years in a date
Best answer by kuovonne
Use the DATEADD([date], [#], 'units') formula function with 'years' as the units.
To add one year
DATEADD({Date Field}, 1, 'years')
To subtract one year
DATEADD({Date Field}, -1, 'years')
It is documented in the formula field reference.
Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
