I've 2 fields, IncreasePct and IncreaseDollars with values, such as 5.32
and 9752
. I'd like to format the cell so that I get something like this:
5.32%($9,165.00)
I've tried something like this:
= IIF(Fields!IncreasePct.Value = "", "",
Fields!IncreasePct.Value & "%(" & Format(Fields!IncreaseDollars.Value, "CO") & ")")
Unfortunately, my function displayed this: 5.32%(CO)
. Adding =
is causing an error.
Any way to format those values?
Thanks for helping.