Hello,
I was trying to change the font color of a calculated value once it drops below a certain threshold. Unfortunately, the formula I came up with is not working on a couple of levels. I'm sure I'm going about this wrong, but I haven't found any solutions that address what I'm trying to do. Any help would be appreciated.
This is the formula I came up with:
if(${s_rating}<2.25,'<font color="red">${s_rating}</font>', '<font color="green">${s_rating}</font>')
It kind of works. However instead of displaying a red or green number, I get a green "'<font color="green">${s_rating}</font>'" when the calculated value stays above my lower threshold (or red "..." when it stays above).