Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

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

FILTERING ALL 0 VALUES

dunkindonut7777
8 - Asteroid

Hi I would like to ask if how would I filter all the 0 values including those with values that have been rounded off. 

 

I want just to filter all the 0 VALUES IN Sum_Sum_FUNCTIONAL_AMOUNT column.

 

clodelegonzales_0-1606284821171.png

 

Can you help me out with this one pls! Thank you 🙂

3 REPLIES 3
atcodedog05
22 - Nova
22 - Nova

Hi @dunkindonut7777 

 

You can use below in the Filter tool

 

For greater than 1

 

[Sum_Sum_FUNCTIONAL_AMOUNT]>=1

For greater than 0.1

 

[Sum_Sum_FUNCTIONAL_AMOUNT]>=0.1

For greater 0.5 which is rounded to 1

[Sum_Sum_FUNCTIONAL_AMOUNT]>=0.5

Considering only values below 0.5 is rounded to 5 and V

 

https://help.alteryx.com/current/designer/filter-tool

 

Hope this helps🙂

Qiu
20 - Arcturus
20 - Arcturus

@dunkindonut7777  @atcodedog05 
Maybe its safer to use 

 


[Sum_Sum_FUNCTIONAL_AMOUNT]>=0.000001



RolandSchubert
16 - Nebula
16 - Nebula

Hi @dunkindonut7777 ,

 

you also could use the ROUND function:

Round([Field1],  0.00001) > 0

 

Using " 0.00001" should remove all values with rounding to six digits (including 0.000009). By setting the number of digits, you can set the "precision" off the filter tool (e.g. 0.000001 would also keep values >= 0.000005).

 

Best,

 

Roland

Labels