Please update your profile to indicate the Excel version you are actually using (I presume you mean 2016...)
Power Query (Get & Transform) is perfect for this: Format your source data as a table, then use the following query:
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Replaced Value" = Table.ReplaceValue(Source,", ",",",Replacer.ReplaceText,{"Column2"}),
#"Split Column by Delimiter" = Table.ExpandListColumn(Table.TransformColumns(#"Replaced Value", {{"Column2", Splitter.SplitTextByDelimiter(",", QuoteStyle.None), let itemType = (type nullable text) meta [Serialized.Text = true] in type {itemType}}}), "Column2")
in
#"Split Column by Delimiter"
That looks more complex than it is, to write - that was generated by following toolbar steps only.
See attachment for worked example.
Bookmarks