Hello! Guys. I am trying to sort the data in my gallery alphabetically. How can I achieve it?
This is my code:
Set(varDistVolunteer, Distinct('Associate Record', Volunteer));
Clear(colVolunteerWithRecords);
ForAll(varDistVolunteer,
Collect(colVolunteerWithRecords,
{
Name: Value,
RecordCount :With(
{
wComplete:
Filter(
'Associate Record',
Volunteer =Value
)
},
CountRows(wComplete)
)
}
)
)

Report
All responses (
Answers (