No projeto do Power Query, você gostaria de copiar os primeiros 6 de seus 10 passos:
Selecione a guia Visualizar e a opção Editor avançado
Copie tudo lá e mantenha-o na área de transferência para uso imediato ou armazene-o em algum lugar temporariamente, como o bloco de notas. Será algo parecido com isto:
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"
Abra seu novo projeto, navegue até Editor avançado e substitua o que estiver nessa janela.
- Remova as etapas 7 a 10 da sua consulta, cada uma começa com # "
- Exclua a vírgula [] que aparece no final da 6ª etapa da consulta (talvez seja necessário rolar para a direita para encontrá-la se a etapa 6 da consulta realmente estiver envolvida)
- Abaixo, a linha "in" é sua 10ª etapa da consulta. substitua-o por seu sexto no mesmo formato # "[Descrição da etapa de consulta]"
Agora deve ficar assim:
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"
- Verifique se a parte inferior do editor avançado diz "Nenhum erro de sintaxe foi detectado "(tente novamente se forem encontrados erros)
- Clique em Concluído
A janela Etapas aplicadas mostra tudo o que você costuma trabalhar e cada etapa é editável.