Is it possible to name sheet names in an XLSX report?
Currently, when I run the report, I use the report grouping to separate the data into separate sheets. The issue I'm having is that the sheet names are "Sheet0", "Sheet1", "Sheet2", etc. Ideally, this would be the Group name.
Here is my current script I am running.
overrides = {"Report Dataset":self.getSibling("Table").props.filter.results.filteredDataSet}
bytesArray = system.report.executeReport(path = "Report Name", project = "Inventory", parameters = overrides, fileType="xlsx")
filename = "ReportName.xlsx"
system.perspective.download(filename, bytesArray)
This works as stated, with the only issue being that I'm unable to rename the sheets using their group name.