Microsoft Excel · Arazzo Workflow
Microsoft Excel Calculate with a Workbook Function and Write the Result
Version 1.0.0
Read input cells, invoke an Excel function as a calculation engine, and write the result back.
View Spec
View on GitHub
AutomationData AnalysisMicrosoftMicrosoft 365OfficeSpreadsheetsArazzoWorkflows
Provider
Workflows
workbook-function-calc
Invoke an Excel workbook function and persist its result into a cell.
Reads the inputs backing a calculation, calls a named Excel function with the supplied parameters, verifies no function error was returned, and writes the computed value into a target cell.
1
openSession
createWorkbookSession
Open a persisting session so the calculation reads a consistent view of the workbook and the written result is saved.
2
readInputs
getRange
Read the cells backing the calculation so the caller can record exactly which inputs produced the result that is about to be written.
3
callFunction
callWorkbookFunction
Invoke the named Excel function through the workbook functions endpoint. Excel returns a 200 with an error field set when the function itself fails, so a 200 alone is not proof of a usable result.
4
writeResult
updateRange
Write the computed value into the target cell so the workbook carries the answer alongside the inputs that produced it.