Missed the Q4 Fall Release Product Update? Watch the on-demand webinar for more info on the latest in Designer 24.2, Auto Insights Magic Reports, and more!
Free Trial

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
16 - Nebula
16 - Nebula

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
Top Solution Authors