I am trying to setup a compare. These are Holiday lists for different countries or country/regions. The thought is that someone could select up to 4 different locations from the list of locations in a combobox.
Each one of the selected locations would be the filter for 1 of the 4 galleries. There are 2 additional screens in the app that show the holidays in different ways. To give you an idea, here is one of the screens.

The goal for the last screen is to show the holidays for the selected locations the same you see in the gallery on the right.
The formula for that gallery:
If(
!IsBlank(DropdownRegion2), Sort(Filter(Holidays, Country = DropdownCountry2.Selected.Result && Region = DropdownRegion2.Selected.Result), Date, Ascending),
Sort(Filter(Holidays, Country = DropdownCountry2.Selected.Result), Date, Ascending)
)
The combobox is multi-select showing 2 fields and the formula is:
GroupBy(HolidaysIndividual,
"Country", "Region", "Result"
)
So if my ComboBox selection looks like this, where #1 is the country and #2 is the region. I want to filter gallery1 by Australia, New South Wales (NSW), Gallery2 by Australia, Queensland (QLD), Gallery3 by Australia, South Australia (SA) and Gallery4 by Australia, Victoria (VIC), with the understanding that it could be any item selected from the list.
