Hi @jhjtbq4hjbt
if you just want to visualise this in a gallery, you could put the below Power Fx into the Items property:
ForAll(
Sequence(CountRows(colApplicants)),
Patch(
Index(
SortByColumns(
colApplicants,
"Score",
SortOrder.Descending
),
Value
),
{RowNo: Value}
)
)
You can then add the RowNo output to see the value:

If you want this stored as a collection so you can do extra things with the outputs, you can extend the code like so & add it to a behavioural property such as OnSelect of a button:
ClearCollect(colApplicantsRanked,
ForAll(
Sequence(CountRows(colApplicants)),
Patch(
Index(
SortByColumns(
colApplicants,
"Score",
SortOrder.Descending
),
Value
),
{RowNo: Value}
)
))
Hopefully the above should work for you!
------------------------------------------------------------------------------------------------------------------------------
If I've answered your question, please mark your post as Solved. You can accept more than one post as a solution.
If my response was a good one, please give it a Thumbs Up!
Visit my blog: https://platformsofpower.net