W projekcie Power Query chcesz skopiować pierwsze 6 z 10 kroków:
Wybierz kartę Widok i opcja Zaawansowany edytor
Skopiuj wszystko tam i przechowuj je w schowku do natychmiastowego użycia lub przechowuj je tymczasowo jak notatnik. Będzie to wyglądać mniej więcej tak:
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"
Otwórz nowy projekt, przejdź do Zaawansowany edytor i zastąp wszystko, co jest w tym oknie.
- Usuń kroki 7-10 zapytania, każde zaczyna się od # ”
- Usuń przecinek [,], który pojawia się na końcu szóstego kroku zapytania (może być konieczne przewinięcie w prawo, aby je znaleźć, jeśli krok 6 zapytania jest naprawdę zaangażowany)
- Poniżej linii „in” znajduje się Twój 10-ty krok zapytania; zastąp go swoim 6-tym w tym samym formacie # ”[Opis kroku zapytania]”
Teraz powinno to wyglądać tak:
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"
- Sprawdź, czy w dolnej części Edytora zaawansowanego jest napisane „Brak błędów składniowych
został wykryty ”(spróbuj ponownie, jeśli zostaną znalezione błędy)
- Kliknij Gotowe
Twój Zastosowane kroki okno pokazuje wszystko, z czym zwykle pracujesz, a każdy krok jest edytowalny.