Hi,
I have a choice column called "Status" that has three items (Awaiting, Tickets Generated & Archived").
In my Gallery I want it to not show the status "archived" and sort it either ascending or "Awaiting" before "Tickets Generated".
Sort on its own works fine
SortByColumns(AddColumns(Onboarding, "Awaiting", Status.Value), "Awaiting")
However when I try and add the filter I cannot get it to function, I'm trying:
SortByColumns(Filter(Onboarding, Status.Value = "Awaiting" Or Status.Value = "Tickets Generated"), "Status", Ascending)