This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
Can Someone assist me in separating Text to Columns with 3 delimiters.... delimiters are (space)(dash)(space). into 2 columns.... for example separating "Garcia-Morales, Fred - E123456" attempting to get result of second column to be just "E123456"?
Hi @bigdaddyvette ,
Attached is a solution showing how to do it with regex and text to columns also.
Let me know if this makes sense to you.
BEst,
Fernando Vizcaino
This works:
You could use a Replace function as:
replace([field]," - ", '|')
then use a text to columns with the pipe | as the delimiter.
cheers,
mark
Thank You 🙂
Thank You
Appreciate It, thks