Thank you for your reply.
I've resolved the original sort/filter issue.
The problem was I was using 'Classic' controls, and this task called for 'Modern' controls.
My issue now is how to update the formula so that if no checkbox is checked and the Keyword
field is Blank/Empty then show all items.
Currently, if no box is checked and the keyword is blank/empty there is just a blank gallery.
One suggestion was to add...',Sort(col_Event_Data_Collection,Opening_Date,SortOrder.Ascending)'
between the last to close parentheses.
I tried that and still got a blank gallery.
Switch(
Newest_to_Oldest_Gallery_Sort_Dropdown.Selected.Value,
"Opening Date: Newest to Oldest",
Sort(
Filter(
col_Event_Data_Collection,
And(
Or(
Keyword_Search_Fld.Value in Venue_Name,
Keyword_Search_Fld.Value in Show_Name,
Keyword_Search_Fld.Value in Opening_Date
),
Title in colShowNames.Title
)
),
Opening_Date,
SortOrder.Descending
),
"Opening Date: Oldest to Newest",
Sort(
Filter(
col_Event_Data_Collection,
And(
Or(
Keyword_Search_Fld.Value in Venue_Name,
Keyword_Search_Fld.Value in Show_Name,
Keyword_Search_Fld.Value in Opening_Date
),
Title in colShowNames.Title
)),Opening_Date,SortOrder.Ascending))