top of page
KISS Excel VBA
Keep It Super Simple with Excel VBA
Sub remove_spaces_and_o()
For Each Cell In Selection
Cell.Value = Trim(Replace(Cell, Chr(186), ""))
Next Cell
End Sub
bottom of page
Keep It Super Simple with Excel VBA
Sub remove_spaces_and_o()
For Each Cell In Selection
Cell.Value = Trim(Replace(Cell, Chr(186), ""))
Next Cell
End Sub