Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Separate Fund Ticker from Fund Name that has no delimiter

sericson
7 - Meteor

Hello! how Can I separate into a new column the Fund Ticker from the Fund Name (example below, last 5 uppercase letters) there is no delimiter to use the text to columns. I thought of using the RegEx tool but I am not sure of the formula or if this is correct. 

 

Janus Henderson Glb Tech and Innovt I JATIX

Vanguard Real Estate Index Admiral VGSLX

Vanguard Health Care Adm VGHAX

4 REPLIES 4
binuacs
20 - Arcturus

@sericson One way of doing this

image.png

Luke_C
17 - Castor

Hi @sericson 

 

Here's a regex formula to extract based on capital letters:

 

REGEX_Replace([Fund], '.*\b(\u)', '$1')

 

 

image.png

Dina
9 - Comet
 

Just another way.

Screenshot 2023-08-07 104200.png

sericson
7 - Meteor

thank you! this worked perfectly

Labels