Sub RemoveSpaces()
For Each cl In Selection
If Right(cl.Value, 2) = " " Then cl.Value = Left(cl.Value, Len(cl.Value) - 2)
Next
End Sub
Sub CheckChars()
With Selection
MsgBox Asc(Left(Right(.Value, 2), 1)) & "|" & Asc(Right(.Value, 1))
End With
End Sub