Temat: Jak wpisać wartość w wyraz?
dwie tabele:
Table1 : Przedmiot, Waga
Table2: Plan lekcji (dni tygodnia, pod każdym przedmioty)
załadować obie tabele do PowerQuery (Get&Transform)
Table2 - UnPivot All columns
Merge Queries by...
Table2 - Value
Table1 - Przedmiot
Expand Table1
Group by Attribute, Waga - sum - Waga
otrzymasz dni tygodnia i sumaryczną wagę przedmiotów (w pionie)
jeżeli chcesz w poziomie to Pivot Attribute by Waga
np:
let
Source = Table.NestedJoin(Table2,{"Value"},Table1,{"Przedmiot"},"Table1",JoinKind.LeftOuter),
#"Expanded Table1" = Table.ExpandTableColumn(Source, "Table1", {"Waga"}, {"Waga"}),
#"Grouped Rows" = Table.Group(#"Expanded Table1", {"Attribute"}, {{"Waga", each List.Sum([Waga]), type number}}),
#"Pivoted Column" = Table.Pivot(#"Grouped Rows", List.Distinct(#"Grouped Rows"[Attribute]), "Attribute", "Waga", List.Sum)
in
#"Pivoted Column"
czy to wystarczy?
Ten post został edytowany przez Autora dnia 11.11.18 o godzinie 21:04