Rotina rápida de VBA.
Olha através de cada célula Usada . Se a célula não estiver vazia, mas o valor for nullstring, limpe essa célula.
Sub clearEmptyValues()
For Each cell In UsedRange
If Not IsEmpty(cell) And cell.Value = vbNullString Then cell.Formula = vbNullString
Next
End Sub