Microsoft Excel · Arazzo Workflow
Microsoft Excel Scratch Worksheet Lifecycle
Version 1.0.0
Create a temporary worksheet, read it, rename and reposition it, then delete it.
View Spec
View on GitHub
AutomationData AnalysisMicrosoftMicrosoft 365OfficeSpreadsheetsArazzoWorkflows
Provider
Workflows
worksheet-lifecycle
Exercise create, get, update, and delete against a single scratch worksheet.
Creates a worksheet, fetches it to confirm it exists, patches its name and position, then removes it from the workbook.
1
openSession
createWorkbookSession
Open a persisting session so each mutation in the lifecycle is committed and observable by the next step.
2
createScratchSheet
createWorksheet
Create the scratch worksheet and capture the id Excel assigns to it.
3
readScratchSheet
getWorksheet
Fetch the worksheet by the id returned at creation to confirm it exists and to capture its starting position and visibility.
4
renameScratchSheet
updateWorksheet
Patch the worksheet's name and position. Excel applies both properties in a single PATCH and returns the updated worksheet.
5
deleteScratchSheet
deleteWorksheet
Remove the scratch worksheet, leaving the workbook as it was found. This is destructive and cannot be undone through the API.