Hide badge when count is zero

Hi there

I find I almost never use the badge feature, because at the moment when the count is zero, the badge still displays, with a value of “0”. By comparison, most other apps that use notification badges would hide the badge where the count is zero, and (to me at least) any other behaviour seems visually awkward and a bit weird.

Is this something that you Codans have debated before?

Also, important context: this is a very minor gripe about a product I love, so please don’t interpret the tone here as negative. :smile:

You mean the button badge?
image

Easily solved with a formula that returns blank if the number is zero.

If(thisRow.Number = 0, "", thisRow.Number)

Welcome to the Community @Tim_Sherman1!

3 Likes

Doh! :man_facepalming:

So obvious in retrospect. Thank you Paul!