My Collection table stores 2 columns, Name and Value.
*Date below is in mm/dd/yyyy format

For all rows, I want to sort them by Date (ascending - earliest on top, latest at bottom), and display in a multi line text field, or a table if it is possible:
If Text:
1) 09 Feb 2024 - Event A
2) 10 Feb 2024 - Holiday B
3) 09 Aug 2024 - Holiday A
4) 04 Sep 2024 - Holiday C
If Table:
| # | Date | Reason |
| 1 | 09 Feb 2024 | Event A |
| 2 | 10 Feb 2024 | Holiday B |
| 3 | 09 Aug 2024 | Holiday A |
| 4 | 04 Sep 2024 | Holiday C |
Any assistance would be greatly appreciated. Thank you.
___________________________________________________________________________________________________________________________________________
Below is my formula for the collection, if it helps.
ClearCollect(
ServiceCalendarDateAndName,
AddColumns(
Filter(
varDateRange,
Value in Filter(
'Service Calendars',
'Service Calendars (Views)'.'Active Service Calendars'
).Date
),
"Name", LookUp('Service Calendars', Date = Value).Name
)
);