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

how to replace value of specified column to null ?

phoebe_90
8 - Asteroid

how to replace value of specified column to null ?

for example, change the value of Cost Center Code to null

Cost Center CodeTax code
706010J4
706140J4
709384J5
709381J4
706010J4
706002J5
3 REPLIES 3
ShankerV
17 - Castor

Hi @phoebe_90 

 

Please use the formula tool.

 

IF [Cost Center Code] = "706010"

THEN Null()

ELSE  [Cost Center Code]

ENDIF

 

Many thanks

Shanker V

phoebe_90
8 - Asteroid

what if I want to change the whole Cost Center Code column into null?

dwstada
11 - Bolide

you would select the column in a formula tool and write "null()" as the formula which will overwrite everything in the column

Labels
Top Solution Authors