merge_cells
Combine multiple cells into a single cell in an Excel sheet using a specified file path, sheet name, and cell range for efficient data organization and formatting.
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"
}