Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Community is experiencing an influx of spam. As we work toward a solution, please use the 'Notify Moderator' option on the ellipsis menu to flag inappropriate posts.
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