get_merged_cells
Identify merged cells in a specific Excel worksheet by providing the filepath and sheet name to analyze cell ranges effectively.
Instructions
Get merged cells in a worksheet.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | ||
sheet_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"title": "Filepath",
"type": "string"
},
"sheet_name": {
"title": "Sheet Name",
"type": "string"
}
},
"required": [
"filepath",
"sheet_name"
],
"title": "get_merged_cellsArguments",
"type": "object"
}