Alteryx Connect Discussions

Find answers, ask questions, and share expertise about Alteryx Connect.

Nested IFs

jmbitonio
5 - Atom

Hello! I am a newbie learner of Alteryx. I am currently creating a workflow that will identify the replacement of members. Here's the hierarchy of replacement.

 

1. Manager

2. CRM

3. FS

 

So, if the associate for replacement is the Manager (John), my workflow should show CRM. If John is also the CRM, it should select FS instead. Here's the sample to make it clear. 

 

I've tried creating IF formulas but I am unable to produce my desired output. Appreciate your help, All! Thanks, thanks!sample.png

1 REPLY 1
cjaneczko
13 - Pulsar

I think you need to join the two tables first and bring in the Manager, CRM and FS fields into Table 1. Then use the following formula in a formula tool. After the formula tool you can add a select tool to remove the Manager/CRM/FS fields from the flow. 

 

IF [ROLENAME] = 'Manager' THEN [FS]
ELSEIF [ROLENAME] = 'CRM' THEN [Manager]
ELSE 'no available replacement'
ENDIF