I have a macro with this in it as i get a lot of exported data with eccess spaces.
basically it will turn all double spaces into single spaces and loop untill no double spaces remain
'clean up descriptions
Do While True
Set Description = Cells.Find(What:=" ", After:=Range("A1"), LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False)
If Description Is Nothing Then Exit Do
Range("Description").Replace What:=" ", Replacement:=" ", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Loop
Bookmarks