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
- Smartsheet Customer Resources
- 62.3K Get Help
- 364 Global Discussions
- 199 Industry Talk
- 428 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 445 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 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!