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.
SOLVED

Replacing Nulls with a String

staceygreene
5 - Atom

I have a simple problem. I need replace all Null values in a column with the word " Terminal " I need to keep everything else the same in the column. Anyone have a solution ? 

3 REPLIES 3
DataNath
17 - Castor
17 - Castor

Hey @staceygreene, you can just use a Formula tool with the following expression - replacing FieldName with your field:

 

if IsNull([FieldName]) then 'Terminal' else [FieldName] endif
staceygreene
5 - Atom

Thank you ! That worked

ImanJanahmadi
5 - Atom

It was so helpful, thank you

Labels
Top Solution Authors