How can I get a column value from previous row in Power Query?

本小妞迷上赌 提交于 2019-11-30 17:07:31

The error comes because {[Index]-1} without anything before it is a list value, but instead you want to index into a row of a table with this syntax: MyTable{index}

That looks like:

= Table.AddColumn(#"Added index", "custom column", each #"Added index"{[Index]-1}[My Column])
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!