Alteryx Designer Desktop Discussions

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

Merging multiple columns into one.

Dan_Alteryx1
5 - Atom

Hello,

 

I have 3 columns containing data type V_String, and I want to merge these 3 columns into 1. See below for an example of how I want to manipulate the data.

 

Before:

Column1Column2Column3
563214C
678915D
907814A

 

After:

NewColumn
563214C
678915D
907814A

 

It looks like I should use the Formula tool, but I am not sure how. Any help would be greatly appreciated.

Thanks!

1 REPLY 1
AJKENDALL95
6 - Meteoroid

Hi draskay


The most straightforward approach here will be to add in a formula tool to create a new column, with the formula [Column1] + [Column2] + [Column3].


Thanks!

Labels