0

I am trying this in the formula options of RDLC report:

IIf(fields!paid_amt.Value >1,"Black","Red")

But it is not working. Any idea that what is the problem?

Sh.Imran
  • 1,035
  • 7
  • 13
ishaan Gupta
  • 198
  • 1
  • 17

1 Answers1

0

Code seems to okay. You can also try this.

=IIF(Fields!paid_amt.Value <> 0 , "Black", "Red")  
Syed Md. Kamruzzaman
  • 979
  • 1
  • 12
  • 33