Advent of Code is now back for a limited time only! Complete as many challenges as you can to earn those badges you may have missed in December. Learn more about how to participate here!
Start Free Trial

Alteryx Designer Desktop Discussions

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

If the cell in the flag column is Null, then in the comments column, Alteryx is to add rem

snadeau456
8 - Asteroid

If the cell in the flag column is Null, then in the comments column, Alteryx is to add this comment "remove from 12219", else leave it blank.

Tried many different SQLs but its not working.

 

If (Null([FLAG_CD])
Then([Comments] "remove from 12219")
Else ""
ENDIF

1 REPLY 1
usmanbashir
11 - Bolide

@snadeau456- Look at the screenshot below. Use snippet below in Formula tool.

 

IF IsNull([FLAG_CD]) THEN 'remove from 12219'
ELSE ""
ENDIF

 

2024-03-26_18-08-22.png

Labels
Top Solution Authors