Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Free Trial

Alteryx Designer Desktop Discussions

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

Combining Fields

nwatzlaf
8 - Asteroid

I have values from four different columns that I want to combine.

 

Origin City     Origin State      Destination City      Destination State

 

I want the final field to read..

 

OriginCity,OriginState_to_DestinationCity,DestinationState

 

Any help is appreciated.

 

Thank you!

3 REPLIES 3
DataNath
17 - Castor
17 - Castor

Would a simple formula tool not do the trick? I.e. the following:

 

[OriginCity]+','+[OriginState]+'_to_'+[DestinationCity]+','+[DestinationState]

messi007
15 - Aurora
15 - Aurora

@nwatzlaf,

 

You can do this using a formula tool :

 

messi007_0-1651075607346.png

 

Attached the workflow,

Regards

 

nwatzlaf
8 - Asteroid

Thanks so much!

Labels
Top Solution Authors