I know for any given field in the report, I can make change the font color using expression like
Iif([FieldBeingUsedInThisCell].value < 0, [make the color red],[otherwise don't])
(great formula, right?) 😉
My question is this:
How do I apply that across the report without having to specify which field is being used?
Meaning, something like:
Iif([whateverthisvalueis].value < 0... etc...
Thanks!