
Announcements
Hi,
I am displaying scores in descending order from SharePoint list on the screen below.
I would like to show an icon/image(winner) only at the first item in the gallery. Can you please let me know how can I do that?
Hi @SumanthDHIT ,
Add the Icon inside your Gallery, and then try adding the below expression into the Visible property of the icon:
ThisItem.'Team No' = First(
Sort(
'Your Data Source',
'Score(avg)',
SortOrder.Descending
)
).'Team No'
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.
If you like my response, please give it a Thumbs Up.