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.
Can you help me out with this one pls! Thank you 🙂
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🙂
@dunkindonut7777Â Â @atcodedog05Â Maybe its safer to useÂ
[Sum_Sum_FUNCTIONAL_AMOUNT]>=0.000001
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