Microsoft Excel · Arazzo Workflow
Microsoft Excel Build a Chart from a Data Range
Version 1.0.0
Verify a source range has data, create a chart over it, and confirm the chart exists.
View Spec
View on GitHub
AutomationData AnalysisMicrosoftMicrosoft 365OfficeSpreadsheetsArazzoWorkflows
Provider
Workflows
build-chart-from-range
Create a chart over a verified source range and confirm it was added.
Reads and validates the source data range, checks the worksheet's existing charts, adds a new chart of the requested type, and verifies the result.
1
openSession
createWorkbookSession
Open a persisting session so the created chart is saved to the stored workbook.
2
verifySourceData
getRange
Read the source range before charting it. A chart built over an empty or wrongly sized range renders blank, and this read catches that early.
3
listExistingCharts
listCharts
List the charts already on the worksheet so a repeated run can be recognised instead of stacking a second chart on top of the first.
4
addChart
addChart
Create the chart over the verified range. seriesby Auto lets Excel decide whether the series run by row or by column based on the range shape.
5
verifyChart
listCharts
List the charts again to confirm the new chart is present on the sheet and to hand the caller the full chart set with positions.