Hi,
I have a list of names and some of them may not be formatted correctly, so I need to be able to add a space after the comma. I am trying to do this with two formulas:
ReplaceChar([Name],","," ")
ReplaceChar([Name]," ",", ")
but what I am getting is a double comma between the last a first name.
Smith,Jennifer
Smith, Jennifer
Becomes:
Smith,,Jennifer
Smith,,Jennifer
thanks!