Hello
I updated SSRS 2005 up to SSRS 2012. When I exported report in excel (xlsx) I got following warning :
"We found a problem with some conent in 'filnename.xlsx'.Do you want to try to recover as much as we can? if you trust the source of this workbook,click yes"
After Pressing Yes Button
"REpaired Recors: Cell information from .xl.worksheets.sheet1.xml port"
15
0.00000000000000000000 this is in string format instead decimal
2
0.00000000000000000000
This heppens if i have decimal(38.20) variable in table and record value is 0.
To avoid this problem i must change report and use this expression
=IIF(Fields!SomeValue.Value = 0, 0, Fields! SomeValue.Value)
for value in report, but this is not sulution for me because we have more then hundred reports.
Is any other solution?