How do I filter zero's out of my card?

I've built a simple card that is pulling a Name and an Amount. But when I pull the amount into 'filter' and select 'not in: 0' and then save & close. All the zeros are still showing. Any advice? I've even created a beast mode calc.

 

(Case when `Amount` >= -1.49
AND `Amount` <= 1.49
THEN 0
ELSE `Amount`
END
)

 

So that any small amounts just show as 0 and then should be filtered out. But they're all still there. 

 

Comments

  • What kind of card are you using?  Would you mind sending a screenshot of the analyzer for the card?


    “There is a superhero in all of us, we just need the courage to put on the cape.” -Superman
  • Do you have any null values in your data?  You might want to try:

     

    (Case when ifnull(`Amount`,0) >= -1.49
    AND ifnull(`Amount`,0) <= 1.49
    THEN 0
    ELSE `Amount`
    END
    )


    “There is a superhero in all of us, we just need the courage to put on the cape.” -Superman
This discussion has been closed.