add-slide-title-with-table
Add a slide with a title and table to a PowerPoint presentation by specifying the presentation name, slide title, and table data. Simplifies data organization and presentation creation process.
Instructions
Add a new slide with a title and table containing the provided data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Table data object with headers and rows | |
presentation_name | Yes | Name of the presentation to add the slide to | |
title | Yes | Title of the slide |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "Table data object with headers and rows",
"properties": {
"headers": {
"description": "Array of column headers",
"items": {
"type": "string"
},
"type": "array"
},
"rows": {
"description": "Array of row data arrays",
"items": {
"items": {
"type": [
"string",
"number"
]
},
"type": "array"
},
"type": "array"
}
},
"required": [
"headers",
"rows"
],
"type": "object"
},
"presentation_name": {
"description": "Name of the presentation to add the slide to",
"type": "string"
},
"title": {
"description": "Title of the slide",
"type": "string"
}
},
"required": [
"presentation_name",
"title",
"data"
],
"type": "object"
}