https://bz.apache.org/bugzilla/show_bug.cgi?id=62275

--- Comment #5 from [email protected] ---
It reproduced with the following test case.

        public void test62275_bug() throws IOException {
            Workbook wb = new XSSFWorkbook();
            Sheet sheet = wb.createSheet();
            Row row = sheet.createRow(0);

            Cell cell = row.createCell(0);
            cell.setCellFormula("vlookup(A2,B1:B5,2,)");

            CreationHelper crateHelper = wb.getCreationHelper();
            FormulaEvaluator eval = crateHelper.createFormulaEvaluator();
            eval.evaluate(cell);

            wb.close();
        }

-- 
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]

Reply via email to