We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Concatenate Set Number of Characters

mustufa2019
8 - Asteroid

I am trying to concatenate the first 7 characters of two fields (Field 1 and Field 7). Can I use formula tool for this?

Please see below for example:

 

Input:

Field 1Field 2Concatenate Outcome
NewYorkCityLimeNewYorkLime
WashingtonCommercialLLCWashingLLC
OhioCompanyLLPOhioCompany

 

2 REPLIES 2
AbhilashR
15 - Aurora
15 - Aurora

@mustufa2019 - yes, you could certainly use a formula tool.

Your formula would go something like:

Left([Field 1], 7) + Left([Field 2],7)

mustufa2019
8 - Asteroid

@AbhilashR thank you! this worked!

Labels
Top Solution Authors