Skip to content
Advertisement

Tag: apache-poi-4

Why am I getting IllegalArgumentException while using copyRowFrom(…) in XSSFRow?

I’m trying to use copyRowFrom(…); to copy the first row of a spreadsheet to the first row of a new XSSFSheet but something is not working right. You can find the XSSFRow class and the method here: https://github.com/apache/poi/blob/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRow.java#L581 I’m getting IllegalArgumentException(“amountToMove must not be zero”) from FormulaShifter.java: https://github.com/apache/poi/blob/trunk/src/java/org/apache/poi/ss/formula/FormulaShifter.java#L80 It seems that the problem is at line 623 of XSSFRow where

Advertisement