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.

To Many "OR" Expressions in Formula Tool?

lisamccullough
8 - Asteroid

Is there a such thing as using to many "OR" expressions in a formula while using the Formula Tool. I was typing out the formula and everything appeared fine but after awhile... the formula turned black.

 

Here's the example:

 

IF [Assets (Y/N)] OR [Liabilities (Y/N)] OR [Revenues (Y/N)] OR [CFO Tier 1 - Reg. Oversight] OR [CFO Tier 1 - Ext. Reporting] OR [CFO Tier 1 - Liq, Fund, Cap Signif]= "Y" THEN "1" ELSE "" ENDIF

2 REPLIES 2
PhilipMannering
16 - Nebula
16 - Nebula

Turned black? This shouldn't happen in your expression. I assume the first 5 fields are of type Boolean?

kelsey_kincaid
12 - Quasar
12 - Quasar

Hi @lisamccullough 

 

Try this: 

 

IF [Assets (Y/N)]="Y" OR [Liabilities (Y/N)] ="Y" OR [Revenues (Y/N)]="Y" OR [CFO Tier 1 - Reg. Oversight]="Y" OR [CFO Tier 1 - Ext. Reporting] ="Y" OR [CFO Tier 1 - Liq, Fund, Cap Signif]= "Y" THEN "1" ELSE "" ENDIF

Labels
Top Solution Authors