In Java, we\'re using the following package to programmatically create excel documents:
org.apache.poi.hssf
If you attempt to set a sheet\'
You can use this:
protected Sheet createSheet(XSSFWorkbook book, String nameSheet) { return book.createSheet(WorkbookUtil.createSafeSheetName(nameSheet)); }