YasserKhalil
Well-Known Member
Hello everyone
I am trying the code
This doesn't work for whole column although when looping through each cell and using Replace it works with each cell
Is there a way to make that works on the whole column.. I tried putting the character ~ before the character but doesn't work too
I even tried usign Chr(220) but doesn't work too
I also tried using ChrW but doesn't work too
Posted at this link too
https://www.eileenslounge.com/viewto...p?f=30&t=33708
https://www.excelforum.com/excel-pr...eplace-special-character-in-whole-column.html
I am trying the code
Code:
Sub Test()
Application.Calculation = xlManual
Columns(2).Replace What:="ـ", Replacement:=""
Application.Calculation = xlAutomatic
End Sub
This doesn't work for whole column although when looping through each cell and using Replace it works with each cell
Is there a way to make that works on the whole column.. I tried putting the character ~ before the character but doesn't work too
I even tried usign Chr(220) but doesn't work too
Code:
Columns(2).Replace What:=Chr(220), Replacement:=""
I also tried using ChrW but doesn't work too
Code:
Columns(2).Replace What:=ChrW(1600), Replacement:="", LookAt:=xlPart
Posted at this link too
https://www.eileenslounge.com/viewto...p?f=30&t=33708
https://www.excelforum.com/excel-pr...eplace-special-character-in-whole-column.html