Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Limit a field to the first 75 characters, and trim extra?

pacbloyd
7 - Meteor

Hello - I need the column "NAME" to NOT exceed 75 characters, and if it does, to TRIM off the extra characters.

 

Which formula does this?

2 REPLIES 2
Luke_C
17 - Castor
17 - Castor

Hi @pacbloyd 

 

the 'LEFT' formula does. So for this:

LEFT([FieldName],75)

 

Note: Field must be a string, if its numeric you could wrap it in a tostring() function or convert via select tool.

pacbloyd
7 - Meteor

@Luke_C  thank you!!

Labels
Top Solution Authors