Advent of Code is now back for a limited time only! Complete as many challenges as you can to earn those badges you may have missed in December. Learn more about how to participate here!
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