Adding Days to a Date derived from a formula
Hi All,
I am trying to add a Follow Up Date to my sheet, following a Submission Date. I tried:
=[Submission Date]@row + 14
and instead of getting a date 14 days in the future, I am just getting the number 14 added at the end of the line.
Both columns are set to Date Types.
The Submission Date is derived from a formula -
Which uses the date captured by smartsheet in the "Created Date" Type column.
Thank you in advance for any tips and advice! 😊
Best Answers
-
Hi @KNorton,
Most likely, the date in "Submission Date" is probably being treated as a string instead of a date (if you hover the mouse pointer over the value, do you get a date?).
Try changing the "Submission Date" formula to this.
=DATE(YEAR([Created Date]@row), MONTH([Created Date]@row), DAY([Created Date]@row))
Hope this helps,
Dave
-
The LEFT function outs a text string. Assuming [Created Date] is a system generated column that outputs the date / time stamp when a row is created, you could use
=DATEONLY([Date Created]@row) + 14
Answers
-
Hi @KNorton,
Most likely, the date in "Submission Date" is probably being treated as a string instead of a date (if you hover the mouse pointer over the value, do you get a date?).
Try changing the "Submission Date" formula to this.
=DATE(YEAR([Created Date]@row), MONTH([Created Date]@row), DAY([Created Date]@row))
Hope this helps,
Dave
-
The LEFT function outs a text string. Assuming [Created Date] is a system generated column that outputs the date / time stamp when a row is created, you could use
=DATEONLY([Date Created]@row) + 14
-
Thank you both! Problem solved, I didn't realise that the LEFT function was outputting text.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 136 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 485 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!