Forum Discussion
Padideh
Oct 01, 2022Copper Contributor
Rank number within Group in Excel
Hello everyone, I have this dataset and I want to rank peoples score in each Group, but I want to same score have same rank, also I dont want to skip number. finally I want Somthing like "Rank" colum...
- Oct 01, 2022
Lorenzo
Oct 03, 2022Silver Contributor
Hi Padideh
To help others who search this site please mark HansVogelaar post as solution (link at the bottom of his reply) - Thanks
If you run 365, a dynamic array alternative:
=MAP(A2:A21, C2:C21,
LAMBDA(Grp,Scr,
SUM(--(UNIQUE(FILTER(C2:C21, A2:A21=Grp)) >= Scr))
)
)