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?
I am trying this in the formula options of RDLC report:
But it is not working. Any idea that what is the problem?
Code seems to okay. You can also try this.
=IIF(Fields!paid_amt.Value <> 0 , "Black", "Red")