In case you missed the announcement: The Alteryx One Fall Release is here! Learn more about the new features and capabilities here
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