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

Example
outputVariable = TableExport("<tableName>", "<filePath>", format="csv", delimiter=",", sheetName="Sheet1")
Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| Table Name | string | Yes | Name of the table to export. | |
| File Path | string | Yes | Output file path. | |
| Format | string | csv | Output format. One of: csv, xlsx. | |
| CSV Delimiter | string | , | Delimiter for CSV output. | |
| Sheet Name | string | Sheet1 | Sheet name for Excel output. |
Outputs
| Name | Type | Description |
|---|---|---|
| outputVariable | json | Stores export result (filePath, rows, format). |