Alteryx Designer Desktop Discussions

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

add is not null

CherylH
8 - Asteroid

Hi,

 

Need a little help. Need to add if DPSGCode is null to formula below. 

 

     iIF(IsNull([BP Billing #]) AND [lDPSGCode],[lDPSGCode],[BP Billing #])

 

Thanks in advance for the assistance.

2 REPLIES 2
atcodedog05
22 - Nova
22 - Nova

Hi @CherylH 

 

Something like this

 

IIF(IsNull([BP Billing #]) AND ISNull([lDPSGCode]),[lDPSGCode],[BP Billing #])
atcodedog05
22 - Nova
22 - Nova

Happy to help 🙂 @CherylH 

 

Cheers and Happy Analyzing 😀

 

Feel free to reach out if you face any other issues 🙂

Labels