Formula Help

I'm currently using smartsheet to store alot of data. I have one column label "PIO DATE". This field has dates corresponding to my data ex 1/2/2021. I need to add 4 years to this date in another column. Can someone assist me with a formula?
Thank you
Answers
-
Hi @Super ,
Try:
=DATE(YEAR([pio date]@row)+4, MONTH([pio date]@row),DAY([pio date]@row))
The formula deconstructs your PIO date, into a DATE function and adds 4 years to the year.
Work?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
Mark, thanks for your comment. That does work if your entire column is configured to be a date. But if you have the column configured as Text/Number so you can enter in dates and numbers, all date functions return "#INVALID DATA TYPE".
Basically, I want a date at the top of the column and then all my data is listed is cells below it.
Any ideas?
-
Hi Joel,
Try:
=YEAR([pio date]@row)+4) + "/"+MONTH([pio date]@row)+"/"+ DAY([pio date]@row)
Change the order if you want a different date format.
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 203 Use Cases
- 515 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!