Overview
Excel tools provide comprehensive functionality for working with Excel files (.xlsx). You can read data, update cells, retrieve specific rows, and manipulate Excel files from URLs.Key Features
EXCEL_GET_ROWS
- Retrieve multiple rows from an Excel sheet
EXCEL_GET_ROW
- Get a specific row from an Excel sheet
EXCEL_GET_CELL_WITH_COORDINATE
- Get value from a specific cell coordinate
EXCEL_UPDATE
- Update Excel file with new data using range selection
EXCEL_UPDATE_BY_COORDINATE
- Update specific cells using coordinate-based positioning
Authentication
No authentication required. Excel tools work directly with file URLs.Example: Reading Excel Data
Example: Updating Excel Data
Example: Excel Data Processing Workflow
Tips and Best Practices
- Always specify the sheet name to avoid working with the wrong sheet
- Use coordinate notation (A1, B2, etc.) for precise cell references
- When updating ranges, ensure your data array dimensions match the specified range
- For large datasets, consider processing data in chunks to avoid timeouts
- Validate data format before updating Excel files to prevent errors