Hi Team,

I have found issue in the apache poi (3.13 - Final) and raised the ticket (Bug
59106 <https://bz.apache.org/bugzilla/show_bug.cgi?id=59106>) .
Also, I have created patch (attached).

Could you please have a look at the ticket and advice, what should I do
next?
Should I rename ticket to [PATCH] TICKET NAME and attach patch there?
Or any other steps are required?

Thanks,
-- 
Artem Bondar
fatalyt11989 | skype
Index: src/java/org/apache/poi/ss/formula/atp/ArgumentsEvaluator.java
===================================================================
--- src/java/org/apache/poi/ss/formula/atp/ArgumentsEvaluator.java      
(revision 1734426)
+++ src/java/org/apache/poi/ss/formula/atp/ArgumentsEvaluator.java      
(working copy)
@@ -86,7 +86,8 @@
             AreaEvalBase area = (AreaEvalBase) arg;
             for (int i = area.getFirstRow(); i <= area.getLastRow(); i++) {
                 for (int j = area.getFirstColumn(); j <= area.getLastColumn(); 
j++) {
-                    valuesList.add(evaluateDateArg(area.getValue(i, j), i, j));
+                    //TODO getValue() is replaced with getAbsoluteValue() 
because loop variables i, j are absolute indexes values, but getValue() works 
with relative indexes values
+                    valuesList.add(evaluateDateArg(area.getAbsoluteValue(i, 
j), i, j));
                 }
             }
             double[] values = new double[valuesList.size()];
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to