exportExcelStructure
Extract and export the structure (sheets and headers) of an Excel file to a new template, facilitating streamlined analysis and replication of file organization.
Instructions
Export Excel file structure (sheets and headers) to a new Excel template file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headerRows | No | Number of header rows to analyze (default: 1) | |
sourceFilePath | Yes | The source Excel file path to analyze | |
targetFilePath | Yes | The target Excel file path to save structure |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"headerRows": {
"default": 1,
"description": "Number of header rows to analyze (default: 1)",
"type": "number"
},
"sourceFilePath": {
"description": "The source Excel file path to analyze",
"type": "string"
},
"targetFilePath": {
"description": "The target Excel file path to save structure",
"type": "string"
}
},
"required": [
"sourceFilePath",
"targetFilePath"
],
"type": "object"
}