// 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");