--- title: "system.dataset.toExcel" description: "Formats the contents of one or more datasets as an Excel spreadsheet, returning the results as a byte array." --- # system.dataset.toExcel > Formats the contents of one or more datasets as an Excel spreadsheet, returning the results as a byte array. This function is used in **Python Scripting**. ## Description Formats the contents of one or more [datasets](platform/scripting/python-scripting/variables-datatypes-and-objects/datasets.md) as an Excel spreadsheet, returning the results as a byte array. Each dataset specified will be added as a worksheet in the Excel workbook. This function replaces the deprecated [system.dataset.dataSetToExcel](versioned_docs\version-deprecated\system-functions\system-dataset-deprecated\system-dataset-dataSetToExcel\system-dataset-dataSetToExcel.md) function. ## Client Permission Restrictions This scripting function has no [Client Permission](ignition-modules\vision\vision-project-properties\vision-project-properties.md#vision-permissions-properties) restrictions. ## Syntax `system.dataset.toExcel(showHeaders, dataset, [nullsEmpty], [sheetNames])` ### Parameters Type | Parameter | Description ------- | ------- | ------- Boolean | `showHeaders` | If True, the spreadsheet will include a header row. If False, the header row will be omitted. List[Dataset] | `dataset` | A sequence of one or more datasets, one for each sheet in the resulting workbook. Boolean | `nullsEmpty` | If True, the spreadsheet will leave cells with NULL values empty, instead of allowing Excel to provide a default value like 0. Defaults to False. [optional] List[String] | `sheetNames` | Expects a list of strings, where each string is a name for one of the datasets. When used, there must be an equal number of string names in sheetName as there are datasets in the dataset parameter. Names provided in this parameter may be sanitized into acceptable Excel sheet names. [optional] ### Returns **Array** - A byte array representing an Excel workbook. ### Scope Gateway, Vision Client, Perspective Session ## Code Examples ```python title="Code Snippet" # This snippet would run a SQL query against a database, and turn the results into a string that is XML that Excel can open. # It then writes the string to a file on the local hard drive. results = system.db.runNamedQuery("Fetch Records",{}) spreadsheet = system.dataset.toExcel(True, [results]) filePath = "C:\\output\\results.xlsx" system.file.writeFile(filePath, spreadsheet) ```