How can i create a field that reads, for example, "Friday March 17, 2023" ?
Page 1 / 1
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.