Join the Alteryx Community’s Maveryx Summer Cup event! Compete, network with others, and earn your gold through a series of challenges from July 24th to August 11th. Learn more about the event here.

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