SSRS report export to excel functionality gives faulty report
问题 In the SSRS my report is displayed fine I have the following scenario: I am passing a parameter ShowDecimal . If the value of the ShowDecimal is Y then decimals should be displayed in the report. Catch is, if the value is like 1 it should display it as 1 , if the value is like 1.10 then the value should be displayed as 1.10. If the ShowDecimal is N then do not show the decimals. I have added condition in the format like: =IIF(Parameters!ShowDecimal.Value="Y", "#,##0.##", "#,##0") In the