Microsoft Excel · Arazzo Workflow
Microsoft Excel Write Through a Named Range
Version 1.0.0
Resolve a workbook's named items, read the range a name points at, and write values through it.
View Spec
View on GitHub
AutomationData AnalysisMicrosoftMicrosoft 365OfficeSpreadsheetsArazzoWorkflows
Provider
Workflows
named-range-write
Write into a workbook range addressed by its defined name rather than a fixed coordinate.
Lists the workbook's named items, reads the range the first named item resolves to, writes new values into that range, and verifies the write.
1
openSession
createWorkbookSession
Open a persisting session so values written through the named range are saved.
2
resolveNamedItems
listNamedItems
List the workbook's named items. Each carries the formula or range reference it points at, which is what the caller checks the target address against before writing anything.
3
readNamedRange
getRange
Read the range the name resolves to, capturing its current values and dimensions so the caller can confirm the payload matches the shape.
4
writeNamedRange
updateRange
Write the values through the resolved address. Because the address came from the named item, the integration keeps working when the owner moves the data and updates the name.