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

Coverting an excel formula to Alteryx

rread
6 - Meteoroid

I am having trouble converting the below excel formula to a formula in Alteryx. Can anyone help?

 

=IF(AJ181>(TODAY()),"IN-FLIGHT",IF(AG181="WRITING","PRE-RFP WORK",IF(AQ181="UNREAD", "DTQ",IF(AQ181="DECLINED","DTQ",IF(AQ181="IGNORED","DTQ",IF(AQ181="POSTED","QUOTED",IF(AQ181="ABANDONED","DTQ","***REVIEW")))))))

2 REPLIES 2
Luke_C
17 - Castor
17 - Castor

Hi @rread 

 

Something like the below should work, would need to replace the column names based on your dataset.

 

If [AJ] > DateTimeNow()
Then 'IN-FLIGHT'
Elseif [AG] = 'Writing'
Then 'PRE-RFP WORK'
Elseif [AQ] in('UNREAD','DECLINED','IGNORED','ABANDONED')
Then 'DTQ'
Elseif [AQ] = 'POSTED'
Then 'QUOTED'
Else 'REVIEW'
Endif

 

 

rread
6 - Meteoroid

Lifesaver! Thank you Luke.

Labels
Top Solution Authors