excel_find_replace
Locate and substitute specific text within Excel worksheets to update financial data, correct errors, or modify content efficiently.
Instructions
Find and replace text in a worksheet
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| matchCase | No | ||
| matchEntireCell | No | ||
| replaceText | Yes | ||
| searchText | Yes | ||
| worksheetName | Yes |
Input Schema (JSON Schema)
{
"properties": {
"matchCase": {
"default": false,
"type": "boolean"
},
"matchEntireCell": {
"default": false,
"type": "boolean"
},
"replaceText": {
"type": "string"
},
"searchText": {
"type": "string"
},
"worksheetName": {
"type": "string"
}
},
"required": [
"worksheetName",
"searchText",
"replaceText"
],
"type": "object"
}