Alteryx Designer Desktop Discussions

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

Overall calculation

rohitchat20
5 - Atom

Hello,

 

I'm new to alteryx and recently started using it for modelling.

 

I've a data like below where on the values of the variable the QC status column is updated.

 

Screenshot 2024-03-06 121737.png

Now I want to add a new column Overall QC Status, where if any of the QC status is failed for a SKU, then it should be QC Failed like below.

Screenshot 2024-03-06 122109.png

 

Currently, I'm using the summarized tool to get the value and joining it again in the dataset.

Screenshot 2024-03-06 122200.png

Is there any other method I can achieve this using a formula tool??

2 REPLIES 2
Qiu
20 - Arcturus
20 - Arcturus

@rohitchat20 
How about we do a Accending Sort for the "QC Status" since the "QC Failed" will come to top if presnet.

Then use Append tool to apply for all rows.

0305-rohitchat20.png

flying008
14 - Magnetar

Hi, @rohitchat20 

 

Maybe you can use Summarize+Formula tools to get your want.

 

Spoiler
IIF(Contains([OverAll QC Status], 'QC Failed'), 'QC Failed', Null())

录制_2024_03_06_15_45_46_72.gif

 

 

 

Labels