I'm trying to conditionally format a cell based on the values in a table on the report. I can do so using the data "Highlight" feature, but only for very limited conditions. Specifically, I can only do comparisons of positive numbers.
E.g., =IF({Forecast Variance}>50000,"yellow","none") works fine
but
=IF({Forecast Variance}<-50000,"yellow","none") does not work at all.
I've tried being creative and using formulas to make all the comparisons be to positive numbers, but I can't get the formulas to work either.
E.g., =IF((0 - {Forecast Variance}) > 50000,"yellow","none")
or, what I really want, which is =IF(ABS({Forecast Variance})> 50000,"yellow", "none")
Anyone else have similar problems and figure out how to do this correctly?
Thanks in advance!