Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

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

If a value exist on rows, then it should pass

h12
8 - Asteroid

Hi all

 

I have this data set

 

ABB1CDD4

I WOULD LIKE TO CREATE THIS COLUMN:

Pass/Fail

No match3xx4No MatchyyFail
2Data IssuesxxData IssuesData IssuesyyFail
Data IssuesData IssuesxxData IssuesData IssuesyyFail
24xx56yyPass

 

I would like to create a pass or fail column which says... if the column has data issues or no match then flag as a fail. There will be multiple columns between the A B C D columns flagged above but I only want to check these.

 

Many thanks!

 

 

4 REPLIES 4
atcodedog05
22 - Nova
22 - Nova

Hi @h12 

 

You can use formula like below.

 

 

IF [A] in ("No match","Data Issues") 
or [B] in ("No match","Data Issues") 
or [C] in ("No match","Data Issues") 
or [D] in ("No match","Data Issues") 
THEN "Fail" ELSE "Pass" ENDIF

 

 

Workflow:

atcodedog05_0-1627642891846.png

 

Hope this helps : )

h12
8 - Asteroid

Oh yeah, sorry I m not sure why I was thinking I need the multi row formula tool! I have a large data set of over a million rows, I assume the above would work for that as well?

atcodedog05
22 - Nova
22 - Nova

Hi @h12 ,

 

Yes it should work.

h12
8 - Asteroid

Thanks!

Labels
Top Solution Authors