Help with Conditional

I need some help with my conditional expression. I’m pretty new, but I feel like my syntax is correct. I’m trying to show/hide an image based on battery percentage integer.
$#BLN#<=49&&>=25?100:0$

The above expression however returns 0 and the image never displays.

I fixed it. You have to call the object (operator/# abbreviation?) again. Like this:

$#BLN#<=49&&#BLN#>=25?100:0$

1 Like