Skip to main content

How can i create a field that reads, for example, "Friday March 17, 2023" ?

I would like to do this so that when I group by date, the header of each section includes day of week. For example, Friday March 17, 2023


Try adding a new formula field with the formula `DATETIME_FORMAT()` with the format specifiers you want 



DATETIME_FORMAT(
Date,
'dddd MMMM D, YYYY'
)

Reply