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 Statement

Kinetic_analytics
11 - Bolide

Hello:

How can I formulate an If isNull statement with (- OR  . OR 0000 OR 00000)  then missing else good these four elements.

 

Thanks

 

2 REPLIES 2
Thableaus
17 - Castor
17 - Castor

Hi @Kinetic_analytics 

 

Try something like IF IsNull([Field]) OR [Field] IN ('-', '.', '0000', '00000') THEN....

 

The IN clause is easier to read in my opinion, and you can consolidate multiple OR expressions in one set of parenthesis.

 

Cheers,

Kinetic_analytics
11 - Bolide

Thanks :) it works. Appreciate your help in my learning process. 

Labels
Top Solution Authors