Skip to main content

Spreadsheet Add Row

Category: Spreadsheets Spreadsheet Add Row block screenshot

Writes one row or column of delimited spreadsheet data. Supported explicit file suffixes are `.csv`, `.tsv`, and `.tab`. If the provided path has no suffix, the runtime writes to `<path>.csv`. If the provided path has an unsupported explicit suffix such as `.xlsx`, the block fails clearly instead of silently changing the format.

Inputs

InputRequiredValue KindTypesEnum Values
pathyesexpressionfile-path-string
axisnoenumenum-stringROW, COLUMN
valuesyesarrayarray
appendnoexpression
flushNownoexpression

Notes

  • Writes delimited spreadsheet output, not native Excel workbook content.
  • Supported explicit file suffixes are .csv, .tsv, and .tab.
  • If the provided path has no suffix, the runtime writes to <path>.csv.
  • If the provided path has an unsupported explicit suffix such as .xlsx, the block fails clearly instead of silently changing the format.

Examples

Export Spreadsheet With Save Dialog

Uses `saveFileDialog` with supported spreadsheet suffixes, writes a header row, then appends data rows.

kind: Pattern · format: runtime-dsl · validation: Schema only

Topics: spreadsheet export, save dialogs

Source: patterns/ex-spreadsheet-export-with-save-dialog.json

Download JSON