I know this should be so simple, but I just can't get it to work! In my search bar, I'm searching by work title, director, lead and project manager. I want to have it ordered alphabetically by work title but I can't get the sort order working. Grrrrr....please save me before I lose it with Power Apps!
Here's the formula I'm using at the moment:
Filter('PMO Portfolio List',
StartsWith('Work Title',SearchInput_2.Text) ||
StartsWith('Assigned Director'.DisplayName,SearchInput_2.Text) ||
StartsWith('Assigned Lead / BPM Specialist'.DisplayName,SearchInput_2.Text) ||
StartsWith('Assigned Project Manager'.DisplayName,SearchInput_2.Text),
SortOrder.Ascending)