Forum Discussion
Anonymous
5 years agoNot applicable
Multiple unpivot in one table
Hi , how to unpivot Multiple column , multiple unpivot in one table see the below image i have a data and result like this How to solve this? Thanks Rajesh
- 5 years ago
Hello, @RajeshRanganath, you may want to use the following code in Power Query to achieve your goal.
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUfJNLEnOANLuSGxnODtWJ1rJCcjzy1eASXqgcl2QuSDlzhCB4PzSouRUINsTje+KwgfpcEGy2gvVdG8Ul7jiktRR8kFR6IZmpw+aDVCVsQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Column A" = _t, #"Comments A" = _t, #"Column B" = _t, #"Comments B" = _t, #"Column C" = _t, #"Comments C" = _t]), Columns = List.Zip(List.Split(Table.ColumnNames(Source), 2)){0}, Rows = Table.RowCount(Source), #"Reformed Table" = Table.Combine(List.Transform(List.Split(Table.ToColumns(Source),2), each Table.FromColumns(_))), #"Added Index" = Table.AddIndexColumn(#"Reformed Table", "Index", 0, 1), #"Integer-Divided Column" = Table.TransformColumns(#"Added Index", {{"Index", each Columns{Number.IntegerDivide(_, Rows)}}}), #"Pivoted Column" = Table.Pivot(#"Integer-Divided Column", List.Distinct(#"Integer-Divided Column"[Column2]), "Column2", "Column1", List.Count) in #"Pivoted Column" - 5 years ago
Ashish_Mathur
5 years agoSuper User