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.

Alteryx

KA
6 - Meteoroid

I am trying to figure out a formula that could help me find when both the ch and owner signoff date is zero/blank. 

1 REPLY 1
ShankerV
17 - Castor

Hi @KA 

 

The below formula will work for you.

 

IF IsNull([CH Signoff Date]) AND IsNull([Owner Signoff Date]) THEN 'Yes'
ELSEIF !IsNull([CH Signoff Date]) AND !IsNull([Owner Signoff Date]) THEN 'No'
ELSE ''
ENDIF

 

During Input:

ShankerV_0-1676057074872.png

 

Output:

ShankerV_0-1676057155300.png

 

Many thanks

Shanker V

 

Labels
Top Solution Authors