Google sheets to google slide

Need your helps.. How to get a google slides from a google sheet, and all the rows in the sheet reprensent one slide. And all of the slides are group in one documents

so you want each row from your sheet to create a new slide in the same presentation, right? here’s the basic flow:

1. **Google Sheets node** - trigger on row added or use “Get Many” to grab all rows

2. **Loop Over Items node** - this will process each row individually

3. **Google Slides node** - use “Create Slide from Template” or “Append Slide” action for each row

the tricky part is you need to either start with an existing presentation ID or create one first with the Slides node, then loop through your sheet data and append slides to it. each loop iteration adds one slide with data from that row.

if you need to map specific cells to text boxes on the slide you’ll want to use the slide template approach - create a template slide with placeholders then duplicate/populate it for each row.

whats your sheet structure look like? that’ll help figure out the exact mapping