Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Community is experiencing an influx of spam. As we work toward a solution, please use the 'Notify Moderator' option on the ellipsis menu to flag inappropriate posts.

Alteryx Designer Desktop Discussions

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

IIF IS Null statement

czjames87
8 - Asteroid

I am trying to build a column using the formula below but can't seem to get the null portion to work correctly. I want the new column to read if the first update date is null then use the last update date else use the first update date. Below is what i am using. Any help would be greatly appreciated. 

 

 

iif(IsNull([move_event_first_update_dt],([move_event_last_update_dt]),[move_event_first_update_dt]))

3 REPLIES 3
JagdeeshN
12 - Quasar
12 - Quasar

Hi @czjames87 

 

Another way of writing this formula is below:-

 

 

if isnull(first update date) then

last update date

else first update date

endif

 

 

Do let me know if it works.

 

Best,

Jagdeesh Narayanan

Hi @czjames87 

 

I believe that your formula is missing a ")" after the IsNnull.

 

It should be like this: iif(IsNull([move_event_first_update_dt]),[move_event_last_update_dt],[move_event_first_update_dt])

 

Hope this helps!

czjames87
8 - Asteroid

that did it. Thank you. 

Labels