Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
125
Excel export for rows greater than 65k
posted

I downloaded the trial version of  the winforms suite. 8.3 to test out the Excel export.  The application is using the following references:

Infragistics3.Excel.v8.3  version# 8.3.20083.1009
Infragistics3.win.ultrawingrid.excelexport.v8.3 version#8.3.20083.1009

The development machine is up to .net framework 3.5.  I cannot get the export to excel to put out more than 65k records without throwing an exception.  Any assistance would be very helpful.  Thank you.

Parents
  • 45049
    posted

    What file format are you exporting to?  This sounds like you're hitting the limitation on the number of rows that an Excel 97-to-2003 file can hold.  If you're not specifying a format in your call to Export(), then you're exporting to Excel 97-to-2003 format automatically.

    To export into Excel 2007 format (and to take advantage of its larger row count limit), use one of the overloads of the Export() method that takes a WorkbookFormat enumeration for a parameter, and pass WorkbookFormat.Excel2007 for that parameter.

Reply Children