Hi,
I have problema sorting a EnumList of Dates in a MAP Filter.
We have a Table [Jobs] that holds rental properties that need new photographs taken.
In order to know if the property is available, i have a column [Availability] of type EnumList who’s rows hold a List of available dates in the next 14 days.
e.g.
25-07-2022,26-07-2022,27-07-2022
With this a User is able to check a Map with properties and use the Filter (Availability) to view the availability of ALL properties on the selected date.
This works, but there is a problem with the order the dates a shown in the UI Filter:
Issue
When using the Map Filter, i need them to be in ascending order, but this is not the case.
I’m guessing that’s because it’s a list of list, and the filter is showing them in row order.
Failed: What I’ve tried so far
I’ve tried splitting up the list of lists in separate dates, using virtual column and this expresión
sort(split(SELECT(Jobs[Availability],true,true),“,”))
Result:
This doesn’t do the trick of ordering the filter UI, and this causes the functionality to stop working.
It’s like the values are no longer related to the properties.
My question is
What can i do to show the available dates in ascending order in the MAP filter?
Hope someone can put me on the right path.
Thank you very much in advance!
Kind regards,
Michel



