insert_columns
Add one or more columns in an Excel worksheet starting at a specified column. Specify filepath, sheet name, start column, and column count for precise data organization.
Instructions
Insert one or more columns starting at the specified column.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
filepath | Yes | ||
sheet_name | Yes | ||
start_col | Yes |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 1,
"title": "Count",
"type": "integer"
},
"filepath": {
"title": "Filepath",
"type": "string"
},
"sheet_name": {
"title": "Sheet Name",
"type": "string"
},
"start_col": {
"title": "Start Col",
"type": "integer"
}
},
"required": [
"filepath",
"sheet_name",
"start_col"
],
"title": "insert_columnsArguments",
"type": "object"
}