Aug 31, 2020 09:30 AM
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?
Solved! Go to Solution.
Aug 31, 2020 09:34 AM
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:
Aug 31, 2020 09:34 AM
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:
Aug 31, 2020 11:57 AM
THANK YOU!!! Yes, finally, this is so satisfying and yet so simple! Keep up the good work!