Skip to main content
The Create Table node adds tables with custom data to Google Slides presentations. Perfect for displaying structured data, reports, and comparisons. This is an AI-powered node that can understand natural language instructions.

When to Use It

  • Display structured data in presentations
  • Create comparison tables and reports
  • Add data tables from workflow results
  • Build formatted data summaries
  • Present metrics and KPIs in table format
  • Generate dynamic tables from data sources

Inputs

FieldTypeRequiredDescription
PresentationTextYesGoogle Slides presentation URL or ID
Slide NumberNumberYesPosition of the slide to add table (1-based)
Table DataArrayYes2D array of table data (rows and columns)
Position XNumberNoX coordinate in points (default: 100)
Position YNumberNoY coordinate in points (default: 100)
WidthNumberNoTable width in points (default: 400)
HeightNumberNoTable height in points (default: 200)

Table Data Format

Provide data as a 2D array where each sub-array represents a row:
[
  ["Metric", "Q3", "Q4", "Change"],
  ["Revenue", "$120K", "$145K", "+21%"],
  ["Users", "1,200", "1,450", "+21%"],
  ["Conversion", "3.2%", "3.8%", "+19%"]
]

Output

Returns table creation details:
{
  "table_id": "TABLE_456DEF789",
  "slide_id": "SLIDE_123ABC",
  "slide_number": 2,
  "dimensions": {
    "rows": 4,
    "columns": 4,
    "width": 400,
    "height": 200
  },
  "position": {"x": 100, "y": 100}
}

Credit Cost

  • Cost per run: 1 credit

Tips

  • First row as headers for better formatting
  • Keep data concise to fit in table cells
  • Use consistent data types within columns
  • Position carefully to avoid overlapping other elements
I