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

Column A must be non null if Column B is Non null: Best way in Alteryx

DtaViz
5 - Atom

Hi

 

I have a requirement to do validation checks for many columns and even for some columns I need to do the following checks few times with different column. The check I need to do is,

 

Column A must be present if Column B is present. In some cases I need to have this with many other checks like Column C have values more than 1000 etc

 

Eg:- If Income is over 10000, then IsTaxPaid column must be prese

 

Any suggestion for achieving this easily

1 REPLY 1
Ladarthure
14 - Magnetar
14 - Magnetar

hi @DtaViz,

 

you could use a formula and then a filter or directly filter with a formula like this one :

 

!isnull([clumn_A]) and !isnull([Column_B]) 

 

and you can add as many criteria as you need, tell me if it helped or you want me to explain more!

Labels
Top Solution Authors