How to change the day of week number to text... like Monday, Tuesday....etc?

StephenW_1-1733397037949.png

Dear ALL, would you please to guide me how to change teh day of week number to "Monday", " Tuesday"....etc? I have used the "WEEKDAY(Date)".... Thanks ALL. 

 

0 2 182
2 REPLIES 2

I'm not an authority on calculated fields in Studio, but I popped your question into Gemini and it suggested creating a calculated field using syntax like this:

CASE WHEN DayOfWeek = 1 THEN "Sunday" 

WHEN DayOfWeek = 2 THEN "Monday" 

WHEN DayOfWeek = 3 THEN "Tuesday" 

WHEN DayOfWeek = 4 THEN "Wednesday" 

WHEN DayOfWeek = 5 THEN "Thursday" 

WHEN DayOfWeek = 6 THEN "Friday" 

WHEN DayOfWeek = 7 THEN "Saturday" 

ELSE "Unknown" 

END

You would presumably have to change 'DayOfWeek' to whatever field is giving you those day numbers.

GavinW, Many thanks 🙏 I will try~

Top Labels in this Space
Top Solution Authors