Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

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
12 - Quasar

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

PangHC
12 - Quasar

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