// Create a new workbook Workbook workbook = new Workbook(); // Set workbook's reference style to R1C1. Exported xlsx file will be R1C1 style. workbook.setReferenceStyle(ReferenceStyle.R1C1); // Save to an excel file workbook.save("ConfigWorkbookReferenceStyle.xlsx");