Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

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

I'd like to create a new column auto-populating based on specific Words

Tommaso83
Alteryx Alumni (Retired)

Dear Community

 

I'd like to create a new column auto-populating based on specific Words.

 

Example is, if someone job title is "..... Manager", it will fall into the Manager's bucket

 

Hope it's clear

 

Thanks

 

 

1 REPLY 1
NickSm
Alteryx
Alteryx

Hey @Tommaso83 

 

There would be a few ways to do this, depending on what the rules for those buckets are.  If you have a lookup table that assigns them, you can bring the lookup table in as another input and use a Join.  Or if you want to build in that logic, you can use a Formula and an If - Then statement.

 

I.e:

 

If Contains([Title], "manager"), then "Manager"

Else ...

Endif

Labels
Top Solution Authors