I wanted to multiply a value by 100 if the Field!FieldNameDescription was equal to "ABC" and ReportFieldValue has a value, but I keep on getting #ERROR.
Here is the code:
Thanks for the help.
Here is the code:
Code:
=IIF(Fields!FieldNameDescription.Value = "ABC" AND Fields!ReportFieldValue <> Nothing, CStr(CInt(Fields!ReportFieldValue.Value * 100)), Fields!ReportFieldValue.Value)
Thanks for the help.