excel_delete_comment
Remove a comment from a specified cell in an Excel file. Provide the file path and cell reference to delete the comment and optionally save to a new file.
Instructions
Delete a comment from a specific cell.
Args: file_path: Path to the .xlsx or .xlsm file cell_ref: Cell reference (e.g., 'B5', 'Sheet1!C10') sheet_name: Optional sheet name (overrides sheet in cell_ref) output_path: Optional output path (defaults to overwriting input)
Returns: Status dictionary with deletion details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Path to the .xlsx or .xlsm file | |
| cell_ref | Yes | Cell reference (e.g., 'B5', 'Sheet1!C10') | |
| sheet_name | No | Optional sheet name (overrides sheet in cell_ref) | |
| output_path | No | Optional output path (defaults to overwriting input) |