If you use the following macro it will remove all cells which equal ~ in the first column.
Range("A1".Select
Do Until IsEmpty(ActiveCell)
If ActiveCell.Value = "~" Then
ActiveCell.Value = ""
ActiveCell.Offset(1, 0).Select
Else
ActiveCell.Offset(1, 0).Select
End If
Loop
If the ~ symbol is in other columns you could add in a second loop to move across the columns.
Precede your ~ with a ~. Same goes fo any wildcard character, so Edit Find:-
~~
or
~?
or
~*
etc
Regards
Ken...........
----------------------------------------------------------------------------
Attitude - A little thing that makes a BIG difference
----------------------------------------------------------------------------
Make sure you are not just doubling the characters though. Each wildcard character regardless of what it is, needs to be preceded with a tilde ~
Regards
Ken................
----------------------------------------------------------------------------
Attitude - A little thing that makes a BIG difference
----------------------------------------------------------------------------
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.