Quote Originally Posted by YasserKhalil View Post
The problem now is that nothing changed
Because I used Selection as range. Have you selected the range before running the code?

Selection.Replace
Otherwise replace the Selection property with your range like the below and check

Sub ReplaceMe()
    Range("A1:B5").Replace Chr(220), "", xlPart, xlByRows, False
End Sub