Excel Export Fail when Number of rows in the Excel sheet exceeded the limit of 65536 rows ssrs

随声附和 提交于 2019-11-29 16:57:33

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

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))
Martin

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?

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

  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.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!