https://bz.apache.org/bugzilla/show_bug.cgi?id=65669
--- Comment #7 from Francis Sourd <[email protected]> --- In my test case, I also tried to escape the quote (with '') in the cell formula in line 57. But it does not work either. cell.setCellFormula("Table1[[#This Row],[" + column.replace("'","''") + "1]]"); The column C''olumn1 doesn't exist in table Table1. XSSFTable.findColumnIndex(String columnName) removes all quotes before searching for the column index so that it searches for "Column1" in the columnMap. However, the column is recorded with the quote in the columnMap. -- 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]
