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 中的 rank 函数。除了 =Rank(B4,B2:B6,1) 你还能做什么?并且没有宏。哈哈
假设您想要排名为 1 的最低值(正如您建议的公式所做的那样),那么您可以在复制的第 2 行中使用 COUNTIF
=COUNTIF(B$2:B$6,"<"&B2)+1
将 < 反转为 RANK 最大值为 1