I am having trouble sorting a list of records in chronological order by date using a field that I have formatted with a formula that calculates the day of the week, month, day of month. The sort is defaulting to alphabetical.
The formula I’m using is
CONCATENATE({Start Day},", ",{Start Date})
Start Day Formula is:
DATETIME_FORMAT({Start Date & TIme},‘dddd’)
Start Date formula is:
DATETIME_FORMAT({Start Date & TIme},‘ll’)
I’m running into an issue as I go from month to month that aren’t in alpha order (sept to oct for example is being listed with oct first. I feel that if I change the formula I sort by to a DATETIME_FORMAT then this could be fixed but I can’t figure it out. Any help or direction would be greatly appreciated!!
Thanks!!