https://bz.apache.org/bugzilla/show_bug.cgi?id=66211
--- Comment #6 from PJ Fanning <[email protected]> --- I tried this test but it won't fail. ``` @Test void testRegression66211() throws Exception { File file = XSSFTestDataSamples.getSampleFile( "binaries.templates.cdn.office.net_support_templates_es-es_tf16410091_win32.xltx.xlsx"); try ( FileInputStream fis = new FileInputStream(file); XSSFWorkbook workbook = new XSSFWorkbook(fis) ) { XSSFFormulaEvaluator formulaEvaluator = workbook.getCreationHelper().createFormulaEvaluator(); formulaEvaluator.evaluateAll(); XSSFSheet newSheet0 = workbook.cloneSheet(0); XSSFSheet newSheet1 = workbook.cloneSheet(1); XSSFSheet newSheet2 = workbook.cloneSheet(2); } } ``` -- 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]
