Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

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