Help

How can I see the name of a weekday

Solved
Jump to Solution
2115 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Kay_Frank
4 - Data Explorer
4 - Data Explorer

I have a simple date in my table and I simply want to have the name of the weekday displayed (e.g. in another column). Does this work with a formula?

1 Solution

Accepted Solutions
Jeremy_Oglesby
14 - Jupiter
14 - Jupiter

Yes, you could use a Formula field to do this, by entering this formula:

DATETIME_FORMAT({Your Date Field}, 'dddd')

Here’s a list of all the “Format Specifiers” that can be used with the DATETIME_FORMAT() function in case you want to try some others:

See Solution in Thread

2 Replies 2
Jeremy_Oglesby
14 - Jupiter
14 - Jupiter

Yes, you could use a Formula field to do this, by entering this formula:

DATETIME_FORMAT({Your Date Field}, 'dddd')

Here’s a list of all the “Format Specifiers” that can be used with the DATETIME_FORMAT() function in case you want to try some others:

THANK YOU!!! Yes, finally, this is so satisfying and yet so simple! Keep up the good work!