Alteryx Designer Desktop Discussions

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

Append value in Column A to an Formula

Masond3
8 - Asteroid

All, 

 

Having a mental block, and struggling on how to proceed

 

I currently have a formula that populates a column called "Reason" when the [Financials ] = [Helper]

 

Formula  : IF [Financials ] = [Helper] THEN "Duplicate Products" ELSE [Reason] ENDIF

 

Current Output

Financials HelperCountReason
78961518.978961518.902Duplicate Products
417298.14417298.144Duplicate Products

 

What i would like to do is when [Financials ] = [Helper] then append the "Count" within the reason

 

Desired Output

Financials HelperCountReason
78961518.978961518.9022 Duplicate Products
417298.14417298.1444 Duplicate Products

 

Looking forward to your response 

 

Many thanks 

 

Masond3

1 REPLY 1
gawa
15 - Aurora
15 - Aurora

hi @Masond3 

You can put the "count" at the beginning of the word like this formula. You need to use ToString() function to concatenate numeric field to strings.

IF [Financials ] = [Helper] THEN ToString([Count])+" Duplicate Products" ELSE [Reason] ENDIF

 

Labels