Excel Export Fail when Number of rows in the Excel

2019-01-29 01:50发布

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

5条回答
甜甜的少女心
2楼-- · 2019-01-29 02:07

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楼-- · 2019-01-29 02:11

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楼-- · 2019-01-29 02:16

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

查看更多
▲ chillily
5楼-- · 2019-01-29 02:16

If your report is simple enough you can export as CSV, then import into Excel.

查看更多
姐就是有狂的资本
6楼-- · 2019-01-29 02:19
  1. Export that data to csv file first.
  2. then open a new Excel 2010 blank workbook.
  3. Click file and open the exported csv file.
  4. it will give you a Text Import Wizard prompt.
  5. Continue clicking Next and then Finish.
  6. 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.
查看更多
登录 后发表回答