【发布时间】:2020-02-12 09:29:55
【问题描述】:
我有:
column1 | column2 | colum3
a;b;c | x;y;z | door;house;tree
使用 Excel powerquery 的期望结果:
a | x | door
b | y | house
c | z | tree
我尝试过: Text.Split([column1],";") 并展开换行,得到:
a
b
c
但是,当尝试对其他值进行相同操作时,会创建新行而不是使用现有行。
【问题讨论】:
标签: powerquery