Date Format not translating to plain text
I have a Date column which I have formatted as short form Day and Date (example: Mon 18-Sep-2023), which I am trying to convert to plain text.
I know adding +"" to the formula of the other column will convert the Date column into plain text, but it returns as 09/18/23, not "Mon 18-Sep-2023".
Is there any work around for this issue?
Answers
-
Try something like this where Finish is the date column in question:
=DAY(Finish@row) + "-" + nested_IF_to_output_month_text + "-" + YEAR(Finish@row)
The nested IF for the month text would look something along the lines of:
IF(MONTH(Finish@row) = 1, "Jan", IF(MONTH(Finish@row) = 2, "Feb", IF(MONTH(Finish@row) = 3, "Mar", ...........................................
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.5K Get Help
- 448 Global Discussions
- 145 Industry Talk
- 481 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 73 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 Events
- 37 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!