Forum Discussion
Dumbass77
Apr 10, 2021Copper Contributor
How to sort names by times they appear
So I have a large sheet with a record of when we tested people. What day and who. I've sorted it by the names so that at least they appear together if they are repeats, but I'd like to now sort it...
- Apr 10, 2021
Dumbass77 Since you tagged your post "Office 365", your Excel version might support Dynamic arrays and the UNIQUE function. If so, the attached file contains a solution that may work for you.
PeterBartholomew1
Apr 10, 2021Silver Contributor
If it is the original table that you need to sort, this can be done with the formula
= LET(
count, COUNTIFS(Names,Names),
SORTBY(Table, count,-1) )