We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Filter data in multiple conditions

Yolande_Q
5 - Atom

Hi, 

 

I would like to filter out data in multiple conditions with below data set:

1. GAM name is blank 

2. Split_Remarks is "Roll up" and blank

3. Special target is NOT "TBS Asia" and "TBS EMEA"

 

IDGAM NameSplit_RemarksSpecial Target
123AppleRoll UpTBS Asia 
456  IRU
789Amazon  CM
1011 Team support TBS EMEA 
1213 Team support TBS EMEA 
1415Twitter Team Owner CM
 

Appreciate any feasible solutions. 

3 REPLIES 3
JosephSerpis
17 - Castor
17 - Castor

Hi @Yolande_Q I mocked up and approach which use multiple filters as this approach is generally faster in terms of compute rather than having one complex logic formula in a single filter plus is easier to troubleshoot.

Raj
16 - Nebula

Please find attached

IsEmpty([GAM Name]) or IsNull([GAM Name]) && (Trim([Split_Remarks]) = "Roll Up" OR IsEmpty([Split_Remarks])) && (Trim([Special Target]) != "TBS Asia" AND Trim([Special Target]) != "TBS EMEA")

this will help.

grazitti_sapna
17 - Castor

Hi @Yolande_Q 
I have made Workflow for your Problem. Please Check.
If it works Kindly accept it as Solution.
Thanks 

Sapna Gupta
Labels
Top Solution Authors