Hi Folks!
I recorded a macro to clean the range selected of char(160)'s and attached
it to a button on one of my toolbars.
It's not working. Here's the code from the macro recorder:
Sub Clean160()
Selection.Replace What:=" ", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
End Sub
The actual recorded code included as the first line:
Range("A1:A10").Select
I figured since that referenced a specific range I could just remove that
line and since the next line starts with Selection, that referred to any
range selected. Is that the problem?
Also, how does the code:
Selection.Replace What:=" ",
know that " " is char(160) and not char(32)?
I tried replacing =" " with =char(160) but that errored.
Thanks!
Biff
Bookmarks