Add tool to get merged cells (#59)

This commit is contained in:
Matteo Scanzano
2025-07-05 10:29:18 +02:00
committed by GitHub
parent 81d786b794
commit d24ce4b97c
3 changed files with 41 additions and 0 deletions

View File

@ -145,6 +145,19 @@ unmerge_cells(filepath: str, sheet_name: str, start_cell: str, end_cell: str) ->
- `end_cell`: Ending cell of range
- Returns: Success message
### get_merged_cells
Get merged cells in a worksheet.
```python
get_merged_cells(filepath: str, sheet_name: str) -> str
```
- `filepath`: Path to Excel file
- `sheet_name`: Target worksheet name
- Returns: String representation of merged cells
## Formula Operations
### apply_formula