add-slide-title-with-table
Add a new slide to a PowerPoint presentation with a title and table using provided data. Simplify slide creation by organizing headers and rows into a structured table format.
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"
}