I want to strip out single commas from within text strings.
Cells.Replace What:=",,", Replacement:=" "
removes the double comma
I have tried:
Cells.Replace What:=",", Replacement:=" " and
Cells.Replace What:=Chr(44), Replacement:=Chr(32)
but the single commas refuse to budge. Is there a way to do this?
Cells.Replace What:=",,", Replacement:=" "
removes the double comma
I have tried:
Cells.Replace What:=",", Replacement:=" " and
Cells.Replace What:=Chr(44), Replacement:=Chr(32)
but the single commas refuse to budge. Is there a way to do this?