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

Replace #N/A with blank

PassION_es
10 - Fireball

Hi,

 

Any alternative to remove N/A from all fields? I used transpose, find replace tool and cross tab tool.  Just thinking if there's any alternative solution.

 

Thank you.

3 REPLIES 3
OTrieger
14 - Magnetar

@PassION_es 
You can use Multi Fields Formula to do the same to multiple fields at the same time

PangHC
13 - Pulsar

you can use multiple field tool

if [_CurrentField_]="N/A" then 
  null()
else
  [_CurrentField_]
endif


then check all the target fields in the field sections
note: not check the copy output.

Screenshot 2024-10-11 152752.png

PassION_es
10 - Fireball

thank you @PangHC & @OTrieger 

Labels
Top Solution Authors