Details for selected country
Country Area Building permits Capital Country/region Abbreviation Name Population Persons per household Time zone(s) Country Attribute Value Alabama 135,765Montgomery US-AL Alabama 4,874,747 2.55Central Time Zone Indiana Building permits 18713California 102,350US-CA California 39,536,653Pacific Time Zone Capital Indianapolis Florida 170,304Tallahassee United States Florida 21,670,000 2.63Country/region United States Hawaii 28,311 3,369US-HI 1,427,538Hawaii-Aleutian Time Zone Population 6666818Illinois 149,998Illinois 2.63Central Time Zone Indiana 18,713Indianapolis United States 6,666,818Nevada 286,367 17,952Carson City United States US-NV Nevada 2.72Mountain Time Zone, Pacific Time Zone New Jersey 22,608 26,793United States US-NJ 9,005,644 2.73New York Albany US-NY New York Oregon 255,026 19,586United States US-OR Oregon 4,142,776 2.51Mountain Time Zone, Pacific Time Zone Texas Austin US-TX 28,304,596 2.84Washington 184,827 44,077Olympia Washington 7,405,743 2.56Pacific Time Zone
Code:// Country let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content] in Source // Data let Source = Excel.CurrentWorkbook(){[Name="Table2"]}[Content], UOC = Table.UnpivotOtherColumns(Source, {"Country"}, "Attribute", "Value"), Filter = Table.SelectRows(UOC, each [Value] <> null and [Value] <> "") in Filter // Result let Source = Table.NestedJoin(Country,{"Country"},Data,{"Country"},"Data",JoinKind.LeftOuter), Expand = Table.ExpandTableColumn(Source, "Data", {"Attribute", "Value"}, {"Attribute", "Value"}), ROC = Table.SelectColumns(Expand,{"Attribute", "Value"}) in ROC






Bookmarks