Alteryx Designer Desktop Discussions

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

Remove prefix

msve
8 - Asteroid

Hello,

 

I have a data with first name, middle name and last name. I split the column using test to columns, but there few names that has single letter prefix that I would like to remove too. 

 

msve_0-1620400593403.png

 

3 REPLIES 3
messi007
15 - Aurora
15 - Aurora

@msve,

 

Please see below:

 

messi007_0-1620401318849.png

Attached the workflow,

Hope this helps!

Regards

HomesickSurfer
12 - Quasar

Hi @msve 

 

IF Length(GetWord([First Name], 0))=1 THEN GetWord([First Name], 1) ELSE [First Name] ENDIF

msve
8 - Asteroid

 @messi007 Thank you for the quick response. I was able to implement your solution. Thank you.

Labels