Save the date! Join us on October 16 for our Product Ops launch event. Register here.
Mar 17, 2023 01:13 PM
How can i create a field that reads, for example, "Friday March 17, 2023" ?
Mar 17, 2023 01:15 PM
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
Mar 18, 2023 01:07 AM
Try adding a new formula field with the formula `DATETIME_FORMAT()` with the format specifiers you want
DATETIME_FORMAT(
Date,
'dddd MMMM D, YYYY'
)