Skip to main content

Export Table to File

Exports an in-memory table to a CSV or Excel file.

Category: Named Tables & Rules Engine · Group: Tables · Activity name: TableExport

The TableExport activity in the designer

Example

outputVariable = TableExport("<tableName>", "<filePath>", format="csv", delimiter=",", sheetName="Sheet1")

Inputs

NameTypeRequiredDefaultDescription
Table NamestringYesName of the table to export.
File PathstringYesOutput file path.
FormatstringcsvOutput format. One of: csv, xlsx.
CSV Delimiterstring,Delimiter for CSV output.
Sheet NamestringSheet1Sheet name for Excel output.

Outputs

NameTypeDescription
outputVariablejsonStores export result (filePath, rows, format).