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

Conditonal Statement Help

Stephenw_Keith
7 - Meteor

Hello,

 

I'm trying to identify(output) where I have a value in "DirectLeaseRateLow" and a value in "DirectLeaseRateHigh" but NO value in "DirectLeaseRateType". I'm not worried about nulls or blanks.

I'm thinking it should be a conditional statement.

Attached is a snippet of the table.

Any help would be greatly appreciated. Thanks.

 Lease Rates.PNG

2 REPLIES 2
nick_ceneviva
11 - Bolide

You could use the formula tool to add a flag or use the filter tool to filter out records.  For the formula tool you would use something like:

 

IF !ISNULL([DirectLeaseRateLow]) AND !ISNULL([DirectLeaseRateHigh]) AND ISNULL([DiretLeaseRateType]) THEN 1 ELSE 0 ENDIF.

 

The filter tool would just use !ISNULL([DirectLeaseRateLow]) AND !ISNULL([DirectLeaseRateHigh]) AND ISNULL([DiretLeaseRateType]) 

Stephenw_Keith
7 - Meteor

Thanks Nick that worked!! Solved.

Labels
Top Solution Authors