
@Tomasteixeira - you can use the Index function. E.g.:
With(
{
_data: Sort(
AddColumns(
GroupBy(
'Certifications',
Title,
Email,
UsersGroupedByEmail
),
Points,
Sum(
UsersGroupedByEmail,
If(
'Level'.Value = "Max",
100,
0
)
)
),
Points,
SortOrder.Descending
)
},
ForAll(
Sequence(
CountRows(_data),
1,
1
),
Patch(
{RowNo: Value},
Index(
_data,
Value
)
)
)
)