[Bug 63475] XSSFRow.copyFromRow failed at cross-sheet copy trying utilize FormulaShifter

2021-10-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63475

PJ Fanning  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEW |RESOLVED

--- Comment #9 from PJ Fanning  ---
I added a fix for this - will appear in v5.1.0 release

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 63475] XSSFRow.copyFromRow failed at cross-sheet copy trying utilize FormulaShifter

2021-10-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63475

--- Comment #8 from PJ Fanning  ---
I added a fix for this - will appear in v5.1.0 release

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 63475] XSSFRow.copyFromRow failed at cross-sheet copy trying utilize FormulaShifter

2021-04-19 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63475

--- Comment #7 from virinchi  ---
Thank you for replying.

Any work arounds that can be used for now?

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 63475] XSSFRow.copyFromRow failed at cross-sheet copy trying utilize FormulaShifter

2021-04-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63475

--- Comment #6 from Dominik Stadler  ---
Apache POI is a volunteer-only project, nobody is paid to work on it. So nobody
is tasked with working on a specific bug and there is no ETA. 

If you would like to speed up things, you can try to help by doing some more
analysis yourself and if possible provide a possible patch.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 63475] XSSFRow.copyFromRow failed at cross-sheet copy trying utilize FormulaShifter

2021-04-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63475

virinchi  changed:

   What|Removed |Added

Version|4.0.x-dev   |5.0.0-FINAL

--- Comment #5 from virinchi  ---
when can we expect this bug to be fixed.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 63475] XSSFRow.copyFromRow failed at cross-sheet copy trying utilize FormulaShifter

2020-01-01 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63475

--- Comment #4 from Dominik Stadler  ---
There is some more information and a workaround discussed at
https://stackoverflow.com/questions/54430518/why-am-i-getting-illegalargumentexception-while-using-copyrowfrom-in-xssfro

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 63475] XSSFRow.copyFromRow failed at cross-sheet copy trying utilize FormulaShifter

2020-01-01 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63475

Dominik Stadler  changed:

   What|Removed |Added

 CC||ariel.demian...@gmail.com

--- Comment #3 from Dominik Stadler  ---
*** Bug 63352 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 63475] XSSFRow.copyFromRow failed at cross-sheet copy trying utilize FormulaShifter

2019-10-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63475

Paul Bilnoski  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #2 from Paul Bilnoski  ---
Here is a simple test case that attempts to copy data across sheets at the same
row index:

try (XSSFWorkbook wb = new XSSFWorkbook())
{
   XSSFSheet first = wb.createSheet();
   XSSFRow row = first.createRow(0);
   row.createCell(0).setCellValue("Value");
   XSSFSheet second = wb.createSheet();
   second.copyRows(Collections.singletonList(row), 0, new CellCopyPolicy());
}
catch (Exception e)
{
   /* poi-ooxml-4.1.0.jar
java.lang.IllegalArgumentException: amountToMove must not be zero
at org.apache.poi.ss.formula.FormulaShifter.(FormulaShifter.java:80)
at
org.apache.poi.ss.formula.FormulaShifter.createForRowCopy(FormulaShifter.java:118)
at org.apache.poi.xssf.usermodel.XSSFRow.copyRowFrom(XSSFRow.java:623)
at org.apache.poi.xssf.usermodel.XSSFSheet.copyRows(XSSFSheet.java:2938)
*/
   throw new IllegalStateException(e);
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 63475] XSSFRow.copyFromRow failed at cross-sheet copy trying utilize FormulaShifter

2019-06-20 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63475

Dominik Stadler  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 OS||All

--- Comment #1 from Dominik Stadler  ---
Can you provide some sample code and sample file to make it possible to
reproduce this more easily?

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org