let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}, {"DATA1", type any}, {"DATA2", type any}, {"DATA3", type any}, {"DATA4", type any}, {"DATA5", type any}, {"DATA6", type any}, {"DATA7", type any}, {"DATA8", type any}, {"DATA9", type any}, {"DATA10", type any}, {"DATA11", type any}, {"DATA12", type any}, {"DATA13", type any}, {"DATA14", type any}, {"DATA15", type any}, {"DATA16", type any}, {"DATA17", type any}, {"DATA18", type any}, {"DATA19", type any}, {"DATA20", type any}}),
#"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"Column1"}, "Attribute", "Value")
in
#"Unpivoted Other Columns"
Review PQ
Bookmarks