将一列中的值替换为另一列

Replace value in one column with another

我有一些疑问,我想用另一个列的值替换列中的值,我有这样的查询 = Table.ReplaceValue(#"Renamed Columns1", each ["Alcance-Canal"], null , Replacer.ReplaceValue,{"CANAL/ES"})

但是还是不行,你能帮帮我吗?

此致

最简单的方法是添加带有公式的自定义列

= if [columnname] = "something" then [columnname] else [othercolumnname]

= if [columnname] = "something" then "anotherthing" else [othercolumnname]