功率查询:索引调整解决方案

时间:2018-11-07 15:11:18

标签: excel powerbi powerquery m

我有多个带有索引列和一些匹配ID的表。我需要通过应用匹配ID之间的比率将所有表与调整后的索引合并到一起。

第一步(黄色)很简单:我们将第2个初始表的比率乘以Table2索引。困难的部分是下一步(带红色的部分):我们需要找到Table3的匹配ID与先前调整的Table2的ID之间的比率。

您是否可以在Power Query中使用一种创新的方法?

请参见下图:

Please see the image

谢谢!

1 个答案:

答案 0 :(得分:0)

红色索引很简单

(100/82)*(88/100) = 88/82 = 1.07317

您可以在更多表格中继续使用此模式。例如,对于五个表,您的最后一个索引将是:

(Index of Max Table1 id)/(Index of Min Table2 id) *
(Index of Max Table2 id)/(Index of Min Table3 id) *
(Index of Max Table3 id)/(Index of Min Table4 id) *
(Index of Max Table4 id)/(Index of Min Table5 id)