I have a combobox in my app to help with filtering my gallery.
I have this code in the items property of the gallery
If(
IsBlank(ComboBox2.Selected.Title),/* <-- Modify formula here */
'Calendar @Grant',
SortByColumns(
Filter(
'Calendar @Grant',
Title in ComboBox2.SelectedItems.Title
),
"EventDate",
Ascending
)
)
It is not sorting by the eventdate and my list is all out of order, as well as pulling in the wrong date that do not match my SharePoint list. I have checked my regional settings and they are set correctly.
I cannot figure out what is going on.