Carlos Ruiz 2011-05-12 13:29:56 -05:00
parent aadb69a1c5
commit 08e425c856
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ public abstract class AbstractExcelExporter
//
short colnumMax = 0;
int rownum = isCurrentRowOnly() ? getCurrentRow() : 0;
int lastRowNum = isCurrentRowOnly() ? getRowCount() : getCurrentRow()+1;
int lastRowNum = isCurrentRowOnly() ? getCurrentRow()+1 : getRowCount();
for (int xls_rownum = 1; rownum < lastRowNum; rownum++, xls_rownum++)
{
if (!isCurrentRowOnly())