Alteryx Designer Desktop Discussions

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

Add data to the string

Nastya
8 - Asteroid

Hello everyone!

I have a problem with adding to the string another string

I have Detail, Route and need to receive the result

DetailRouteResult
A4333-3456-321333A4-3456A4-321A4

Thanks a lot for any help!

1 REPLY 1
patrick_digan
17 - Castor
17 - Castor

@Nastya In a formula tool, you can use the + sign to concatenate, like:

[Route] + [Detail]

EDIT: I may not have read close enough. Are you trying to add the detail before every dash and at the end? 

 

EDIT#2: If that's the case, then perhaps something like this in the formula tool

Replace([Route],"-",[Detail]+"-")+Detail
Labels