有没有办法在 power query 中对多列进行排名?

Is there a way to rank multiple columns in power query?

我正在设置一个需要对多列进行排名的查询。我能够按降序对第一列进行排序并插入一个索引列。但是,我无法对其他列进行排名。

我在下面包含了一个示例: Table 显示代理绩效

Agent  | surveys | rank  | outcalls |total calls |outcalls/total calls |rank
Dallas |  80%    |   1   |    50    |  80        |      62.5%          | ?
May    |  75%    |   2   |    90    |  100       |      90.0%          | ?
Summer |  60%    |   3   |    60    |  75        |      80.0%          | ?

所以基本上从上面的例子来看,我能够添加一个对调查进行排名的索引列。如何在保持其他列排名的同时对 outcalls/total 调用列进行排名?

在这种情况下,一种简单的方法是对 outcalls/total calls 进行排序,添加另一个索引列,然后对第一个 rank 列进行排序(如果您想恢复为起始顺序)。