Forum Discussion
Pivot/Unpivot two columns by value
For reference i am only using one column (Cust ID). I feel like this isnt hard but i cant figure out how to get my column data into multiple rows. I have attached an image -- seems pretty straightforward. When i try to pi
5 Replies
- Ashish_MathurSuper User
Hi,
This M code works
let Source = Excel.CurrentWorkbook(){[Name="Data"]}[Content], Partition = Table.Group(Source, {"Zip"}, {{"Partition", each Table.AddIndexColumn(_, "Index",1,1), type table}}), #"Expanded Partition" = Table.ExpandTableColumn(Partition, "Partition", {"Cust ID", "Index"}, {"Cust ID", "Index"}), #"Added Prefix" = Table.TransformColumns(#"Expanded Partition", {{"Index", each "Cust ID" & Text.From(_, "en-IN"), type text}}), #"Pivoted Column" = Table.Pivot(#"Added Prefix", List.Distinct(#"Added Prefix"[Index]), "Index", "Cust ID") in #"Pivoted Column"Hope this helps.
- AnonymousNot applicable
Ashish_Mathur That helped me a lot. I was hoping this would help me with two columns instead of one. Any thoughts? I have a 3 rd column CustName which matches w a CustID. Is it possible to end up w columns such as: Zip(unique), CustName1, CustID1, CustName2, CustID2, CustName3, CustID3, etc.
- Ashish_MathurSuper User
You are welcome. I can get CustName1 ad CustID1 in one cell/column - not in different columns. May be someone else can help.
- themistoklisCommunity Champion
Anonymous
Create a new column e.g. Customer No and add the following formula:
Customer No = "Cust " &RANKX (FILTER (Sheet1, Sheet1[Zip]= EARLIER(Sheet1[Zip]) ), -- Grouping ColumnSheet1[Cust ID], -- Sorting Column, ASC)Then Create a matrix visual and add the data.I removed totals from the matrix and for values field (Cust ID) I used the MAX aggregation method.See attached file - AnonymousNot applicable
themistoklis Thanks for the answer but i was hoping to achieve this table raw In Power Query before loading it to PBI