Home
Analytics
XLSX reports max records per worksheet
KavithaDeepak
<p>Hi All,</p>
<p> </p>
<p>I am generating xlsx report.After reaching 10,000 records,records are displayed in another worksheet.</p>
<p> </p>
<p>Can any one tell me what is the max limit for displaying records per sheet?</p>
<p>I want to display all records in one worksheet.</p>
<p> </p>
<p> </p>
<p>Report layout is Auto layout.</p>
<p> </p>
<p>Thank you,</p>
<p>Kavitha</p>
Find more posts tagged with
Comments
shamo
<p>Take a look at this and use this export setting if it helps</p>
Matthew L.
<p>The "MAX_PAGE_BREAK_INTERVAL" in BIRT 4.3+ has a max default of 10,000 rows (Unknown Reason).</p>
<p>However you can work around this issue by placing the following line of code in the beforeFactory method of your report to allow it to export 1 million rows per page (Assuming you set the Page Break Interval of the table to 0).</p>
<pre class="_prettyXprint _lang-js">
reportContext.getAppContext().put("MAX_PAGE_BREAK_INTERVAL", 1000000);
</pre>
KavithaDeepak
<p>Thank you for your reply..</p>
<p> </p>
<p>Mathew,</p>
<p> </p>
<p>your suggestion worked.
</p>
ronald_ecq
<p>Muchas Gracias. Me sirvio mucho.</p>