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

OR Function in Filter Tool

jaypee1217
7 - Meteor

Does the filter tool require an IF(OR) statement? I have 2 separate filter tools and am trying to combine into 1 to clean up my workflow model. 

 

Filter Tool 1

[COLUMN1] != "397"

 

Filter Tool 2

!IsNull([AMOUNT])

 

I thought a simple OR would work, but it's not producing the correct results. 

 

[COLUMN1] != "397"

OR

!IsNull([AMOUNT])

 

2 REPLIES 2
PhilipMannering
16 - Nebula
16 - Nebula

Multiple Filter Tools is equivalent to having all of the statements in one tool separated by AND. Try that.

[COLUMN1] != "397"
AND
!IsNull([AMOUNT])
jaypee1217
7 - Meteor

Problem solved. Formula was working. My amount columns were not null and had trailing whitespaces.

Labels
Top Solution Authors