Negative Level Indicator

I have a level indicator that is binded to a tag and the value of the tag right now is negative. So what happens is that the level indicator is colored red and have the warning sign (triangle with # sign in it) and I don’t want it to appear like that even if the tag value is negative. Is there anything I can do about this?

Instead of binding the value directly to a tag, bind it to an expression:

If({path/To/Tag} < 0, 0, {path/To/Tag})