Hi,
I have a SharePoint List which has 2 columns:
Name is a Person column in SharePoint.
In PowerApps, I have a gallery which pulls through the names and Pod Names. I also have a Text Input to allow users to filter the gallery.
I want to sort the gallery in to Name alphabetical order. Here is my current code:
SortByColumns(
If(IsBlank(TextInput2.Text), 'PSMC Cover Pods', Filter('PSMC Cover Pods', TextInput2.Text in Name.DisplayName)),"{Name}")
This current sorts by Title (Pod Name) and not Name. Can anyone help?