A small Power Query solution will clean that up.
Text is highlighted in yellow. After transformation, the null string has disappeared
Code:
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Replaced Value" = Table.ReplaceValue(Source,"",null,Replacer.ReplaceValue,Table.ColumnNames(Source))
in
#"Replaced Value"