
Announcements
I have an app that has a home screen with a gallery so users can view all submissions (items in SharePoint list). Users need to be able to search/sort the gallery multiple ways. Right now, I have the gallery working with my Text Search (text input field) and ComboBox Drop-Down Status Filter. NOW, I need to add 3 additional Sort icons to the gallery so users can sort by Submission Name, Owner Name, and GoLive date. Here is what I have so far... how do I add the sort icons in here so that they can sort Ascending / Descending?
Code for Gallery Right Now:
SortByColumns(
Filter(
'BARC Submissions UAT',
(Len(ComboBox1.Selected.Value) = 0 || SubmissionStatusChoice.Value = ComboBox1.Selected.Value),
TextInput1.Text in 'Submission Name' || TextInput1.Text in SubmissionOwnerSearch.DisplayName
),
"GoLive",
varSortOrder
)
Hi @cjwilson80, The easy way of adding sort icon is use the Emoji!. Yes, you can use emoji in the text property of button. Example:
You can use Windows button and dot button simultaneously, which appears emoji popup:
Then select the highlight section and under Geometric symbols you get all arrows.
-----------------------------------------------------------------------------------------------------------------------------
I hope this helps.
Please click Accept as solution ✅ if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs up.👍
Thanks,
ANB