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 中做到这一点?
公式或 VBA 代码对我都有帮助。
显然,对于整体排名,您可以使用 RANK 函数,例如,对于 A2:A100 中的客户、B2:B100 中的区域和 C2:C100 中的销售值,您可以在 D2 中使用此公式按销售值计算整体客户排名(最高排名 1)
=RANK(C2,C$2:C$100)
对于区域内的排名,您可以在复制下来的 E2 中使用此版本
=SUMPRODUCT((B$2:B$100=B2)*(C$2:C$100>C2))+1