https://issues.apache.org/bugzilla/show_bug.cgi?id=53514
--- Comment #3 from Angshuman <[email protected]> --- here is the actual code... int sheetNo=1; if(rowNo==1048575) { rowNo=1; sheetNo++; } if(rowNo==1) { worksheet = (SXSSFSheet) workbook.createSheet("Matrix Report "+sheetNo); row = (SXSSFRow) worksheet.createRow(0); for(int hl=0; hl<headerLength; hl++){ cell = (SXSSFCell) row.createCell(hl); header = (String)matrixReportHeader.get(hl); cell.setCellValue(header); cell.setCellStyle(cellStyle); } } i need to create the header in the next worksheet also, that why header is in the main loop. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
