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

Mapping from Key words

Learner09
8 - Asteroid

Hello All,

 

I am trying to create Mapping with the help of keywords. Please see the details in the attached file.

 

Thanks,

3 REPLIES 3
JulioMO
9 - Comet

Hi @Learner09 

 

Try to use a "Formula Tool" to create a new column with the following formula:

 

IF Contains([Updated Item Description], "Absence") THEN "Absence"
ELSEIF Contains([Updated Item Description], "Analytics") THEN "Analytics"
ELSEIF Contains([Updated Item Description], "Accruals") THEN "Accruals"
ELSEIF Contains([Updated Item Description], "HR") THEN "HR"
ELSE null()
ENDIF

 

Hope it helps!

 

Regards

messi007
15 - Aurora
15 - Aurora

@Learner09,

 

Please see below:

 

messi007_0-1613038291729.png

Attached the workflow,

Regards

Learner09
8 - Asteroid

Thank you @JulioMO 

Labels
Top Solution Authors