Search K
Appearance
Appearance
The Excel New Row node allows automation of inserting a new row of data into a specific worksheet of an Excel file stored in SharePoint Online. This task is executed using Microsoft Graph API via a registered Microsoft 365 service account.
Use this node when you need to programmatically add new rows of data to an existing Excel workbook located on SharePoint. It is useful for scenarios such as appending form data, logging task output, or updating tracking sheets.
Label | Type | Description |
---|---|---|
Sharepoint Path to File | Text | Full SharePoint-relative path to the target Excel file (e.g. /sites/mySite/Documents/myFile.xlsx ). |
Worksheet Name | Text | The exact name of the worksheet (tab) within the Excel file. |
Row Values to insert | JSON | A JSON array of string values representing the row to insert. Example: ["Value1", "Value2", "Value3"] |
This task requires a Microsoft 365 service account with appropriate permissions to access the SharePoint document library and modify Excel files using Microsoft Graph.
The service account must be linked via the ThirdParty-Microsoft configuration.
The task performs the following validations before execution:
Row Values to insert
is a non-empty array of strings.After execution, the following inputs are removed from the taskParameters.data
object to avoid unintended downstream use:
Sharepoint Path to File
Worksheet Name
Error Message | Cause |
---|---|
Sharepoint Folder not found | The provided SharePoint path was invalid or improperly formatted. |
File name not found | The file portion of the path was not identified. |
Row Values to insert not found | The input key was missing or contained an empty list. |
Failed to get Sharepoint locations | SharePoint parsing failed due to an invalid path or token issues. |
Failed to Execute: - | An unexpected runtime exception occurred. |