how to replace value of specified column to null ?
for example, change the value of Cost Center Code to null
Hi @phoebe_90
Please use the formula tool.
IF [Cost Center Code] = "706010"
THEN Null()
ELSE [Cost Center Code]
ENDIF
Many thanks
Shanker V
you would select the column in a formula tool and write "null()" as the formula which will overwrite everything in the column
what if I want to change the whole Cost Center Code column into null?