Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Formula for Blanks

calvincarr29
8 - Asteroid

I need a formula that makes all zeros in all columns blank cells. 

2 REPLIES 2
nagakavyasri
12 - Quasar

Use Multi field formula tool:

 

Capture7.PNG

CoG
14 - Magnetar

This sounds like a job for the Multi-Field Formula Tool

1. In the Tool configuration, select either all field types (or just numerical)

2. If you actually want blanks then change type to string and use the following formula: IF ToString([_CurrentField_]) = "0" THEN "" ELSE [_CurrentField_] ENDIF

3. If you meant Null then replace the "" in the formula above with Null()

 

Screenshot.png

 

Happy Solving!!!

Labels
Top Solution Authors