Microsoft Excel · Arazzo Workflow
Microsoft Excel Append a Row to a Table
Version 1.0.0
Resolve a table on a worksheet, confirm its column shape, append a row, and read it back.
View Spec
View on GitHub
AutomationData AnalysisMicrosoftMicrosoft 365OfficeSpreadsheetsArazzoWorkflows
Provider
Workflows
append-table-row
Append a single record to an Excel table and verify it was written.
Finds the table on a worksheet, validates its column shape, posts a new row at the end of the table, and re-reads the rows to confirm.
1
openSession
createWorkbookSession
Open a persisting session so the appended row is committed to the stored workbook rather than held in a transient calculation session.
2
resolveTable
listTables
List the tables on the worksheet and take the first one as the append target. The step fails closed if the worksheet carries no table.
3
confirmColumnShape
listTableColumns
Read the table's columns so the caller can confirm the row being appended has one value per column and in the same order. Excel rejects a row whose width does not match the table.
4
appendRow
addTableRow
Append the row. Sending index as null tells Excel to add the row at the end of the table rather than inserting it at a position.
5
verifyRow
listTableRows
List the table rows back so the caller can confirm the appended row is present at the index Excel reported.