Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

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

Replace 0's with Null()

dkma
8 - Asteroid

Hi all,

 

Does anyone know how to replace 0's with Nulls in alteryx. 

 

Any help would be much appreciated

4 REPLIES 4
Emil_Kos
17 - Castor
17 - Castor

Hi @dkma,

 

Please try using a formula tool and use the below formula:

 

IF [Field1]=0 Then null() else [Field1] ENDIF

dkma
8 - Asteroid

How to apply this using multi field tool

dkma
8 - Asteroid

Hello, I figured it out. thanks for the quick reply 🙂

bmoss
6 - Meteoroid

select all fields to which this needs apply in the multi-field formula tool and place the following expression:

 

if [_CurrentField_]=0 then null() else [_CurrentField_] endif

Labels