C
camlad
I need to remove white space from a range so I recorded the following which
did not work.
How can I remove all spaces in a range?
Range("A1:A535").Select
Selection.Replace What:="^w", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Camlad
did not work.
How can I remove all spaces in a range?
Range("A1:A535").Select
Selection.Replace What:="^w", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Camlad