merge_cells
Combine a range of cells in an Excel spreadsheet to create a single merged cell. Input file path, sheet name, and start and end cells to perform the operation.
Instructions
Merge a range of cells.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_cell | Yes | ||
filepath | Yes | ||
sheet_name | Yes | ||
start_cell | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_cell": {
"title": "End Cell",
"type": "string"
},
"filepath": {
"title": "Filepath",
"type": "string"
},
"sheet_name": {
"title": "Sheet Name",
"type": "string"
},
"start_cell": {
"title": "Start Cell",
"type": "string"
}
},
"required": [
"filepath",
"sheet_name",
"start_cell",
"end_cell"
],
"title": "merge_cellsArguments",
"type": "object"
}