Microsoft Excel · Arazzo Workflow
Microsoft Excel Read, Write, and Verify a Cell Range
Version 1.0.0
Open a persisting session, read a range, write new values, and read the range back.
View Spec
View on GitHub
AutomationData AnalysisMicrosoftMicrosoft 365OfficeSpreadsheetsArazzoWorkflows
Provider
Workflows
session-range-update
Read a cell range, overwrite its values in a session, and verify the result.
Captures the prior contents of an A1-notation range, patches new values into it inside a persisting session, then re-reads the range to confirm the committed state.
1
openSession
createWorkbookSession
Open a workbook session with persistChanges true so the values written later in this flow are saved back to the stored workbook.
2
readBefore
getRange
Read the range before writing so the caller retains the prior values and can confirm the target range has the row and column count it expects.
3
writeValues
updateRange
Patch the supplied two-dimensional values into the range. Only values are sent, so any existing number formats on the cells are left intact.
4
readBack
getRange
Re-read the same range to verify the committed values, including the text representation Excel rendered for each cell.