https://issues.apache.org/bugzilla/show_bug.cgi?id=53434
Priority: P2
Bug ID: 53434
Assignee: [email protected]
Summary: Subtotal is not return correct value.
Severity: normal
Classification: Unclassified
Reporter: [email protected]
Hardware: PC
Status: NEW
Version: 3.8
Component: POI Overall
Product: POI
I think,
because LazyAreaEval#isSubtotal is not considered to relative index.
I corrected LazyAreaEval.java in my local environment, is as follows.
--- return _evaluator.isSubTotal(rowIndex, columnIndex);
+++ return _evaluator.isSubTotal(getFirstRow() + rowIndex, getFirstColumn() +
columnIndex);
After that, it seems to work correctly.
Please check.
Regards.
--
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]