let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Part", type text}, {"FromQty", Int64.Type}, {"ToQty", Int64.Type}, {"UnitPrice", Int64.Type}}),
#"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"Part", "UnitPrice"}, "Attribute", "Value"),
#"Reordered Columns" = Table.ReorderColumns(#"Unpivoted Other Columns",{"Part", "Attribute", "Value", "UnitPrice"}),
#"Renamed Columns" = Table.RenameColumns(#"Reordered Columns",{{"Value", "Qty"}}),
#"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"Attribute"})
in
#"Removed Columns"