Skip to content

Microsoft Excel

Microsoft Excel is a spreadsheet program used for organizing, analyzing, and visualizing data in tabular form.

Categories: productivity-and-collaboration

Type: microsoftExcel/v1


Connections

Version: 1

OAuth2 Authorization Code

Properties

NameLabelTypeDescriptionRequired
clientIdClient IdSTRINGtrue
clientSecretClient SecretSTRINGtrue
tenantIdTenant IdSTRINGtrue

Actions

Append Row

Name: appendRow

Append a row of values to an existing worksheet.

Properties

NameLabelTypeDescriptionRequired
workbookIdWorkbook IDSTRINGtrue
worksheetNameWorksheetSTRING
Depends On workbookId
true
isTheFirstRowHeaderIs the First Row Header?BOOLEAN
Options true, false
If the first row is header.true
rowDYNAMIC_PROPERTIES
Depends On isTheFirstRowHeader, worksheetName, workbookId
true

Example JSON Structure

{
"label" : "Append Row",
"name" : "appendRow",
"parameters" : {
"workbookId" : "",
"worksheetName" : "",
"isTheFirstRowHeader" : false,
"row" : { }
},
"type" : "microsoftExcel/v1/appendRow"
}

Output

The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.

Clear Worksheet

Name: clearWorksheet

Clear a worksheet of all values.

Properties

NameLabelTypeDescriptionRequired
workbookIdWorkbook IDSTRINGtrue
worksheetNameWorksheetSTRING
Depends On workbookId
true
isTheFirstRowHeaderIs the First Row Header?BOOLEAN
Options true, false
If the first row is header.true

Example JSON Structure

{
"label" : "Clear Worksheet",
"name" : "clearWorksheet",
"parameters" : {
"workbookId" : "",
"worksheetName" : "",
"isTheFirstRowHeader" : false
},
"type" : "microsoftExcel/v1/clearWorksheet"
}

Output

This action does not produce any output.

Delete Row

Name: deleteRow

Delete row on an existing sheet.

Properties

NameLabelTypeDescriptionRequired
workbookIdWorkbook IDSTRINGtrue
worksheetNameWorksheetSTRING
Depends On workbookId
true
rowNumberRow NumberINTEGERThe row number to delete.true

Example JSON Structure

{
"label" : "Delete Row",
"name" : "deleteRow",
"parameters" : {
"workbookId" : "",
"worksheetName" : "",
"rowNumber" : 1
},
"type" : "microsoftExcel/v1/deleteRow"
}

Output

This action does not produce any output.

Find Row by Number

Name: findRowByNum

Get row values from the worksheet by the row number.

Properties

NameLabelTypeDescriptionRequired
workbookIdWorkbook IDSTRINGtrue
worksheetNameWorksheetSTRING
Depends On workbookId
true
isTheFirstRowHeaderIs the First Row Header?BOOLEAN
Options true, false
If the first row is header.true
rowNumberRow NumberINTEGERThe row number to get the values from.true

Example JSON Structure

{
"label" : "Find Row by Number",
"name" : "findRowByNum",
"parameters" : {
"workbookId" : "",
"worksheetName" : "",
"isTheFirstRowHeader" : false,
"rowNumber" : 1
},
"type" : "microsoftExcel/v1/findRowByNum"
}

Output

The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.

Update Row

Name: updateRow

Update a row in a worksheet.

Properties

NameLabelTypeDescriptionRequired
workbookIdWorkbook IDSTRINGtrue
worksheetNameWorksheetSTRING
Depends On workbookId
true
rowNumberRow NumberINTEGERThe row number to update.true
isTheFirstRowHeaderIs the First Row Header?BOOLEAN
Options true, false
If the first row is header.true
updateWholeRowUpdate Whole RowBOOLEAN
Options true, false
Whether to update the whole row or just specific columns.true
rowDYNAMIC_PROPERTIES
Depends On workbookId, worksheetName, isTheFirstRowHeader, updateWholeRow
true

Example JSON Structure

{
"label" : "Update Row",
"name" : "updateRow",
"parameters" : {
"workbookId" : "",
"worksheetName" : "",
"rowNumber" : 1,
"isTheFirstRowHeader" : false,
"updateWholeRow" : false,
"row" : { }
},
"type" : "microsoftExcel/v1/updateRow"
}

Output

The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.