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!
Solved! Go to Solution.
Ok, I know what I did wrong - I should use replace string not char.
Hey @Emil_Kos I hit another snag - this is now adding back a comma where there is a second name such as:
Smith, Jennifer Rose
Now is giving me
Smith, Jennifer, Rose
How would I go about only adding the comma back in after the first word?