Change font for negative numbers across report

  • 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!

  • Figured it out:

    =Iif(me.Value < 0,"Red","Black")

    I've never used "me.Value" before-- neat trick!

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply