I’m trying to map these fields into a Google Slides template that has a table with 4 rows — each row corresponds to a listing.
The slide looks like this (see image):
How do I group the bundles into sets of 4 so each set creates a new slide in the same Google Slides deck, using the same template layout?
Is there a built-in Make.com module or technique to:
batch every 4 bundles together,
pass those 4 to one “Create Slide from Template” step,
then loop to the next 4 bundles, and so on?
Right now, the Iterator sends each bundle individually, so each slide only gets one row filled, instead of four.
Any suggestions on how to:
combine bundles into chunks of 4,
or restructure the data so each “Google Slides” module receives four mapped bundles at once?
Thanks in advance for your help! I’ve attached screenshots of both my Iterator output and my Google Slides template to show what I’m trying to achieve.
Hi Jamie_L_Huillier,
I didn’t tested this solution, but I think it will work for you.
You can do this cleanly in Make with an Array aggregator that chunks the iterator stream into groups of 4, then feed each group to Google Slides › Create a slide from template.
Tools › Array aggregator (place it right after the Iterator)
Source module: your Iterator.
Group by: use the bundle index to batch every 4 items into one group.
{{ floor( ( 20.__ IMTINDEX __ - 1 ) / 4 ) }} ← remove spaces, it was done to omit text formatting
This yields: 0 for items 1–4, 1 for 5–8, etc., so the aggregator outputs one bundle per group of four.
Target structure: create an array (call it rows) of collections with just the fields you need:
rows:
location: {{mag_city}}
rev: {{mag_sales_base}}
ebitda: {{int_tangibles}}
invest: {{mag_totalaskingprice_base}}
contact: {{_ownerid_value@OData.Community.Display.V1.FormattedValue}}
listingid: {{mag_listingnumber}}
Google Slides › Create a slide from template Connect it right after the aggregator. It will run once per aggregated bundle, i.e., once per slide of four rows.
In Text replacements, map your placeholders exactly as they appear in the slide (including braces).
Use get() and length() so it’s safe when the last group has fewer than 4 items.