https://issues.apache.org/bugzilla/show_bug.cgi?id=47056
Yegor Kozlov <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #1 from Yegor Kozlov <[email protected]> 2009-04-20 09:41:17 PST --- POI requires sheet names with special characters (space, !, etc) to be delimited in single quotes. The following code works fine to me: Workbook source = new HSSFWorkbook(); Sheet sheet = source.createSheet("Workunit status"); Name nm = source.createName(); nm.setNameName("name1"); nm.setRefersToFormula("'Workunit status'!$A$1:$C$2"); Regards, Yegor -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- 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]
