unmerge_cells
Unmerge cells in an Excel sheet to split merged data back into individual cells. Specify file path, sheet name, and cell range to process.
Instructions
Unmerge 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": "unmerge_cellsArguments",
"type": "object"
}