Extract the text word from a date column

I am trying to pull the day text (Monday, Tuesday, etc.) from a date column using a formula. SS AI tool tells me to use:
=TEXT([Meeting Date]@row, "dddd")
but that gives me the #UNPARSEABLE error.
What am I missing?
Best Answer
-
Hi @Michael Albano,
@AdamSYNH's answer is excellent!
I'd also recommend using a different AI service for Smartsheet formulas in the future. I use ChatGPT's 4o model and get pretty good results compared to Smartsheet's AI. The downside is that you have to tell ChatGPT more about your sheet, since it doesn't have direct context from your sheet.
Best!
Nathan Braun (Founder of SSFeatures) (nathan@ssfeatures.com) (LinkedIn)
SSFeatures makes Smartsheet way easier to use and it saves you hours of work every week. It adds essential features into Smartsheet to save you time. For example: โ Auto Sorting โ Sorting with Filters โ Report PDF Generation โ Copy and Paste Conditional Formats โ Copy and Paste Automation Workflows โ Column Manager โ and so many more.
Answers
-
Hi @Michael Albano,
Try this:
=IF(WEEKDAY(Date@row) = 1, "Sunday", IF(WEEKDAY(Date@row) = 2, "Monday", IF(WEEKDAY(Date@row) = 3, "Tuesday", IF(WEEKDAY(Date@row) = 4, "Wednesday", IF(WEEKDAY(Date@row) = 5, "Thursday", IF(WEEKDAY(Date@row) = 6, "Friday", IF(WEEKDAY(Date@row) = 7, "Saturday"))))))), "")Adam Collins
Sr Clinical Development Operations Analyst
Syneos Health
-
Hi @Michael Albano,
@AdamSYNH's answer is excellent!
I'd also recommend using a different AI service for Smartsheet formulas in the future. I use ChatGPT's 4o model and get pretty good results compared to Smartsheet's AI. The downside is that you have to tell ChatGPT more about your sheet, since it doesn't have direct context from your sheet.
Best!
Nathan Braun (Founder of SSFeatures) (nathan@ssfeatures.com) (LinkedIn)
SSFeatures makes Smartsheet way easier to use and it saves you hours of work every week. It adds essential features into Smartsheet to save you time. For example: โ Auto Sorting โ Sorting with Filters โ Report PDF Generation โ Copy and Paste Conditional Formats โ Copy and Paste Automation Workflows โ Column Manager โ and so many more.
Help Article Resources
Categories
Check out the Formula Handbook template!