Alteryx Designer Desktop Discussions

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

Merging/Concat data in two columns to create a new vlaue

Deano478
12 - Quasar

Hi Folks,

 

I have a situation where I have data like so:

 

Servlice LineSub Service Line
OperationsSoftware Systems

 

I need to essentially merge the data in those two columns to create a new column that would look like this:

Servlice LineSub Service LineDepartment
OperationsSoftware SystemsOperations - Software Systems

 

The other two columns must also remain as they are I have been banging my head off a wall over this and it sound so simple.

 

Cheers for any help in advance.

5 REPLIES 5
Raj
14 - Magnetar

use the formula tool for this

Raj
14 - Magnetar

pfa

Raj_0-1677064709732.png

 

Deano478
12 - Quasar

@Raj wow I was really overthinking it cheers for that 

Deano478
12 - Quasar

@Raj sorry one more questions how would I get a space before and after the - ? 

 

Raj
14 - Magnetar

@Deano478  use this

[Servlice Line]+" - "+[Sub Service Line]

or you can use

[Servlice Line]+" "+"-"+" "+[Sub Service Line]

 

both will work

Labels