Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

Trimming string from the right, leaving the first ten characters

Nicholas_Kierstead
6 - Meteoroid

I have a list of first and last names without spaces. Each string is of a varying lengths, is there a way to trim each string down to the first ten characters? There are no special characters to parse off of.

 

Thanks,

 

/N

3 REPLIES 3
Nicholas_Kierstead
6 - Meteoroid

Nm, I found the substring formula.

Kenda
16 - Nebula
16 - Nebula

Hey @Nicholas_Kierstead 

 

To keep only the first ten characters of a string, you can use the following expression:

substring([FieldName],0,10)

 

Breaking this down, it is saying for your given field, start at the 0th character and keep 10 characters total.

 

Hope this helps! 

Nicholas_Kierstead
6 - Meteoroid

Thank you, Kenda, it works perfectly.

Labels