excel_merge_files
Combine multiple Excel files into a single workbook for consolidated financial analysis, expense tracking, and automated reporting.
Instructions
Merge multiple Excel files into one workbook
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputFiles | Yes | ||
outputPath | Yes |
Input Schema (JSON Schema)
{
"properties": {
"inputFiles": {
"items": {
"type": "string"
},
"type": "array"
},
"outputPath": {
"type": "string"
}
},
"required": [
"inputFiles",
"outputPath"
],
"type": "object"
}