问题
In SSRS 2008 (I use Sql Server BIDS to create reports) how to solve "Excel Export Fail when Number of rows in the Excel sheet exceeded the limit of 65536 rows ssrs" issue
Thanks
回答1:
Yes, this is a limitation of SSRS through 2008R2.
SSRS 2012, included with SQL server 2012 will remove this limit: http://blogs.msdn.com/b/farukcelik/archive/2012/02/01/sql-server-reporting-services-ssrs-reporting-services-in-sql-server-2012-codename-quot-denali-quot-will-support-xlsx-docx-formats-bye-bye-65536-rows-limit-in-xls-files.aspx
The workaround for 2008R2 and before is to export as .csv
回答2:
When your results are exceeding 65k rows (and you dont have SSRS2012), create a parent group on the tablix (or table, or list) and in the Group on:
field enter the expression below.
Add Page break between each instance of a group
=CInt(Ceiling(RowNumber(nothing)/65000))
回答3:
I think some Excel Versions can not support more then 65536 rows per se. You might consider to expand the data on several worksheets / tables.
A similar Issue is discussed here: Is it possible to see more than 65536 rows in Excel 2007?
回答4:
If your report is simple enough you can export as CSV, then import into Excel.
回答5:
- Export that data to csv file first.
- then open a new Excel 2010 blank workbook.
- Click file and open the exported csv file.
- it will give you a Text Import Wizard prompt.
- Continue clicking Next and then Finish.
- If there is data that you need to keep as text ensure that in Step 3 of 3 you click Text for each column that you want to keep leading zeros if any.
来源:https://stackoverflow.com/questions/9682170/excel-export-fail-when-number-of-rows-in-the-excel-sheet-exceeded-the-limit-of-6