Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Excel 表,其中包含用户反馈(优秀、非常好、好、差、非常差),每个单元格都有数字。
我可以用什么公式来为每个用户获得 5 星的排名。
假设我们在 A 列中有一个人员列表,在B列中有他们的分数,其中1表示非常好,5表示非常差:
要为每个人分配唯一等级,请在C1中输入:
=RANK(B1,$B$1:$B$22,1)+COUNTIF($B$1:$B1,B1)-1
并抄下来。要按等级组织列表,请在D1中输入:
=INDEX(A:A,MATCH(ROWS($1:1),C:C,0))
并复制下来:
正如你所看到的,所有得分为1的人都在顶部,而所有得分为5的人都在底部。