Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

Data Cleansing

keithr197
7 - Meteor

Hi All

 

I have a data set where i want to replace all fields that has a "Not Applicable" value to "Blank", so something similar to the imputation tool (but that is only for numeric values). I tried using the data cleanse tool with no luck.

 

Thanks for the assistance 

1 REPLY 1
Emil_Kos
17 - Castor
17 - Castor

Hi @keithr197,

 

This should work for you. I have used multi-row formula with a replace function:

 

Replace([_CurrentField_], 'Not Applicable', null())

 

Emil_Kos_0-1623485698493.png

Input:

 

Emil_Kos_2-1623485720505.png

Output:

Emil_Kos_1-1623485706929.png

 

Labels