Hi guys,
So I have some string data that looks like this:
New York 123456 BAR 1
and it's all in the same column. I want to separate each entry into its own column. It seems to me the most direct way to do this would be to basically create a CSV file by replacing the instances in which there are multiple spaces with a comma. I tried using this formula:
REGEX_Replace([RecordType], "\s+",",")
But that got me this:
New,York,123456,BAR,1
Which isn't exactly what I need...
Any hints?
Thank you!!