delete_sheet_columns
Remove specific columns in an Excel sheet starting from a designated column, simplifying file cleanup and organization through secure, automated Excel file manipulation.
Instructions
Delete 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": "delete_sheet_columnsArguments",
"type": "object"
}