Here is the Mcode I used to get the data into three columns formatted correctly. I split on a space and not a "/". Then deleted the two columns holding the slash.
let
Source = Excel.CurrentWorkbook(){[Name="StartSales"]}[Content],
#"Split Column by Delimiter" = Table.SplitColumn(Source, "Description", Splitter.SplitTextByDelimiter(" ", QuoteStyle.Csv), {"Description.1", "Description.2", "Description.3", "Description.4", "Description.5"}),
#"Changed Type" = Table.TransformColumnTypes(#"Split Column by Delimiter",{{"Description.1", type text}, {"Description.2", type text}, {"Description.3", type date}, {"Description.4", type text}, {"Description.5", type text}}),
#"Removed Columns" = Table.RemoveColumns(#"Changed Type",{"Description.2", "Description.4"})
in
#"Removed Columns"
Bookmarks