https://bz.apache.org/bugzilla/show_bug.cgi?id=65915
--- Comment #5 from xican.y...@gmail.com --- Steps to reproduce in version 5.2.0 ``` try (HSSFWorkbook wb = new HSSFWorkbook()) { HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(wb); HSSFSheet sheet = wb.createSheet(); HSSFRow row = sheet.createRow(0); HSSFCell cell = row.createCell(0); sheet.setArrayFormula("INDEX({1},1,IF(OR(FALSE,FALSE),1,1))", new CellRangeAddress(0, 0, 0, 0)); org.junit.jupiter.api.Assertions.assertEquals(fe.evaluate(cell).getNumberValue(), 1.0); } ``` -- 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