Why won't this reconcile?

Hello:

I’m working to create HR colors based on ranges and have found that my statement only partially resolves. Here is the statement I’m working with in the opacity field.

$(50<=#ZHR#<=90)?100.0$

It resolves to “$true?100.0$” Can someone please tell me why it will not resolve the rest of the way?

Thanks for all responses!

JR

1 Like

@jeffery.g.reine
if you use $#ZHR#>=50&&#ZHR#<=90?100:0$ it should work

3 Likes

Thank you so much. It was driving me nuts. I tried utilizing the && operator too and it would reconcile the same way. I guess I needed another pair of eyes. You rock!

JR