I'm trying to sort a gallery using two columns. One column is a text field and the other is a combobox/choice field. (single selection).
SortByColumns(Filter(DataSource,***filter parameters here****),"SortColumn1",Ascending,"SortComboColumn2",Acending)
this throws a "Cannot sort on the expression type".
I tried this as well and I can't seem to convert this column to a compatible type.
SortByColumns(Filter(DataSource,***filter parameters here****),"SortColumn1",Ascending,AddColumns(DataSource,""SortComboColumn2"",'SortCombo Column2'.Value),Acending)