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

Employee Name Searching

SH_94
11 - Bolide

Dear Community,

 

I would like to ask if we can match the two data below into one data:

SH_94_0-1625818497065.png

 

May i know if this is possible done in the alteryx?

11 REPLIES 11
SH_94
11 - Bolide

Dear @atcodedog05 ,

 

Thanks for the explanation. Currently i have the data as below:

SH_94_0-1626090273216.png

 

I plan to make the formula whereby if the Employee Name 2 column is empty , take the Employee Name data. If there is data in the Employee name 2, take the data inside it.

 

Do you know how to build on this as i kind of forget the formula.

 

Thank you.

atcodedog05
22 - Nova
22 - Nova

Hi @SH_94 ,

 

Formula like below should work.

 

IIF(IsEmpty([Employee Name 2]), [Employee Name], [Employee Name 2])

 

Hope this helps : )

Labels