https://issues.apache.org/bugzilla/show_bug.cgi?id=57390
Vitaly Litvak <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- OS| |All --- Comment #1 from Vitaly Litvak <[email protected]> --- Same example with XSSF works just fine: XSSFWorkbook wb = new XSSFWorkbook(); XSSFRow row = wb.createSheet().createRow(0); row.createCell(0).setCellValue("09"); row.createCell(1).setCellFormula("MATCH(TRIM(A1),{\"09\"},0)"); try (FileOutputStream fos = new FileOutputStream("match_test_poi.xlsx")) { wb.write(fos); } -- 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]
