Search K
Appearance
Appearance
The Excel Read Range node allows you to extract data from a specific worksheet in an Excel file stored in SharePoint Online. This node uses the Microsoft Graph API to connect to the file and retrieve the data as a two-dimensional array.
Use this node to read the entire contents of a worksheet (excluding defined range filtering) and store the results in a variable for use in downstream workflow steps.
This node requires two user inputs:
/Shared Documents/Reports/SalesReport.xlsx
Sheet1
📝 Note: The current implementation reads the entire sheet. Although a
Range Address
field is present in the backend code, it is not active or required in the UI.
The node outputs a two-dimensional array of the worksheet content into a variable named:
{ExcelRange}
.This node requires a valid Microsoft 365 service account token:
ThirdParty-Microsoft
If no valid token is found or configured, the node will fail with the message:"Required Service Accounts not found"
The task is marked as Completed when:
The task may fail under the following conditions:
Error messages will be returned via taskMessage
.
ExcelGraphService.GetSheetDataAsync(...)
to fetch datataskParameters.data
object once processedExcelRange
for downstream useRange Address
support if needed