In case you missed the announcement: Alteryx One is here, and so is the Spring Release! Learn more about these new and exciting releases here!
Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

how to filter multiple column which contains 0

Beckyli
8 - Asteroid

how to filter multiple columns that contains 0, 

when there is 0 on Beginning balance, Endding Balance and Transaction columns at same time then no need show up.

i use formula "and" it doesn't work.

Beckyli_1-1667502221936.png

 

 

5 REPLIES 5
MilindG
12 - Quasar

MilindG_0-1667502614391.png

MilindG_1-1667502646591.png

 

 

binuacs
21 - Polaris

@Beckyli your formula seems to be correct. Make sure that the fields are numeric in the data type

binuacs_0-1667502742934.png

 

IF they are not numeric try the below formula

 

toNumber([Begining Balance]) !=0
AND
toNumber([Ending Balance]) != 0
AND
toNumber([Transactions]) !=0

 

 

Beckyli
8 - Asteroid

i need use "and" not "or", but anyway doesn't work for me either.

Beckyli_0-1667503522478.png

 

Beckyli
8 - Asteroid

why my keep getting error.

Beckyli_0-1667503649739.png

 

MilindG
12 - Quasar

@Beckyli  You have beginning misspelled

Labels
Top Solution Authors