Hello,
I have build a report in Visual Studio. I have put an expression for a row visibility. The report is run and extract the correct results. When the report is published in SSRS an error message appears.
- The Hidden expression for the tablix ‘table1’ contains an error: Input string was not in a correct format. (rsProcessingError)
- The Hidden expression for the tablix ‘table1’ contains an error: Input string was not in a correct format. (rsRuntimeErrorInExpression)
the expression is
=IIF(Parameters!NRP_Status.Value ="Y" and Cint(Format(Fields!DATA_DISBURSIMIT.Value, "yyyyMMdd")) > Parameters!Close_date.Value, true ,
IIF(Parameters!NRP_Status.Value <>"Y" and Cint(Format(Fields!DATA_DISBURSIMIT.Value, "yyyyMMdd")) < Parameters!ORED.Value,true,
false))
Can you help please
thanks