Alteryx Designer Desktop Discussions

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

Excel formula to alteryx

Crypto_raccoon
7 - Meteor

Hey i have a question on how to transform several formulas from excel to alteryx: lets say i have something like =IF(ISBLANK(B2),"No","Yes") in an excel spreadsheet, how do i transform it to alteryx?

3 REPLIES 3
Kenda
16 - Nebula
16 - Nebula

Hey @Crypto_raccoon 

 

Instead of ISBLANK(), try IsEmpty(). Also, in Alteryx, use iif for conditional statements like this.

 

Hope this helps!

Emil_Kos
17 - Castor
17 - Castor

Hi @Crypto_raccoon,

 

I believe it would be 

 

IIF(IsEmpty([Column name]), 'No', 'Yes')

MK_Alteryx411
6 - Meteoroid

In the event this still doesn't work, use the cleanse tool to eliminate leading & trailing whitespaces and then use the IsEmpty() method again.

Labels