Excel Power Query中是否存在从先前的查询复制应用步骤以便所有应用的步骤显示在副本中?在中,我想将10步查询复制到步骤6,然后添加新步骤,从先前查询中分叉。
看起来PowerQuery中的“重复”选项将复制整个查询,并且不允许更改任何步骤。
感谢您对此的帮助。
Excel Power Query中是否存在从先前的查询复制应用步骤以便所有应用的步骤显示在副本中?在中,我想将10步查询复制到步骤6,然后添加新步骤,从先前查询中分叉。
看起来PowerQuery中的“重复”选项将复制整个查询,并且不允许更改任何步骤。
感谢您对此的帮助。
Answers:
在Power Query项目中,您希望复制10个步骤中的前6个步骤:
选择选项卡视图和选项高级编辑器
复制那里的所有内容,并将其保存在剪贴板中以便立即使用,或者将其存放在像记事本一样的临时位置。它看起来像这样:
let
Source = [Bunches of stuff],
#"Step 1" = [All the things that happen],
#"Step 2" = [All the things that happen],
#"Step 3" = [All the things that happen],
#"Step 4" = [All the things that happen],
#"Step 5" = [All the things that happen],
#"Step 6" = [All the things that happen],
#"Step 7" = [All the things that happen],
#"Step 8" = [All the things that happen],
#"Step 9" = [All the things that happen],
#"Step 10" = [All the things that happen]
in
#"Step 10"
打开新项目,导航到“ 高级编辑器”,然后替换该窗口中的任何内容。
现在看起来应该是这样的:
let
Source = [Bunches of stuff],
#"Step 1" = [All the things that happen],
#"Step 2" = [All the things that happen],
#"Step 3" = [All the things that happen],
#"Step 4" = [All the things that happen],
#"Step 5" = [All the things that happen],
#"Step 6" = [All the things that happen]
in
#"Step 6"
“ 应用步骤”窗口显示您通常使用的所有内容,并且每个步骤都是可编辑的。