Microsoft Excel
Read, write, and update data
Microsoft Teams is a powerful spreadsheet application that enables data management, analysis, and visualization. Through the Microsoft Excel integration in Sim Studio, you can programmatically read, write, and manipulate spreadsheet data to support your workflow automation needs.
With Microsoft Excel integration, you can:
- Read Spreadsheet Data: Access data from specific ranges, sheets, and cells
- Write and Update Data: Add new data or modify existing spreadsheet content
- Manage Tables: Create and manipulate tabular data structures
- Handle Multiple Sheets: Work with multiple worksheets in a workbook
- Process Data: Import, export, and transform spreadsheet data
In Sim Studio, the Microsoft Excel integration provides seamless access to spreadsheet functionality through OAuth authentication. You can read data from specific ranges, write new information, update existing cells, and handle various data formats. The integration supports both reading and writing operations with flexible input and output options. This enables you to build workflows that can effectively manage spreadsheet data, whether you're extracting information for analysis, updating records automatically, or maintaining data consistency across your applications.
Usage Instructions
Integrate Microsoft Excel functionality to manage spreadsheet data. Read data from specific ranges, write new data, update existing cells, and manipulate table data using OAuth authentication. Supports various input and output formats for flexible data handling.
Tools
microsoft_excel_read
Read data from a Microsoft Excel spreadsheet
Input
Parameter | Type | Required | Description |
---|---|---|---|
accessToken | string | Yes | The access token for the Microsoft Excel API |
spreadsheetId | string | Yes | The ID of the spreadsheet to read from |
range | string | No | The range of cells to read from |
Output
Parameter | Type |
---|---|
data | json |
microsoft_excel_write
Write data to a Microsoft Excel spreadsheet
Input
Parameter | Type | Required | Description |
---|---|---|---|
accessToken | string | Yes | The access token for the Microsoft Excel API |
spreadsheetId | string | Yes | The ID of the spreadsheet to write to |
range | string | No | The range of cells to write to |
values | array | Yes | The data to write to the spreadsheet |
valueInputOption | string | No | The format of the data to write |
includeValuesInResponse | boolean | No | Whether to include the written values in the response |
Output
Parameter | Type |
---|---|
updatedRange | string |
updatedRows | string |
updatedColumns | string |
updatedCells | string |
metadata | string |
spreadsheetId | string |
spreadsheetUrl | string |
microsoft_excel_table_add
Add new rows to a Microsoft Excel table
Input
Parameter | Type | Required | Description |
---|---|---|---|
accessToken | string | Yes | The access token for the Microsoft Excel API |
spreadsheetId | string | Yes | The ID of the spreadsheet containing the table |
tableName | string | Yes | The name of the table to add rows to |
values | array | Yes | The data to add to the table (array of arrays or array of objects) |
Output
Parameter | Type |
---|---|
data | json |
Block Configuration
Input
Parameter | Type | Required | Description |
---|---|---|---|
operation | string | Yes | Operation |
Outputs
Output | Type | Description |
---|---|---|
response | object | Output from response |
↳ data | json | data of the response |
↳ metadata | json | metadata of the response |
↳ updatedRange | string | updatedRange of the response |
↳ updatedRows | number | updatedRows of the response |
↳ updatedColumns | number | updatedColumns of the response |
↳ updatedCells | number | updatedCells of the response |
↳ index | number | index of the response |
↳ values | json | values of the response |
Notes
- Category:
tools
- Type:
microsoft_excel