I’m working on a Make scenario triggered by a Tally form submission. The form includes individual checkbox selections, I want to generate a single Google Doc that compiles the relevant instruction text for each checkbox selection.
Here’s how it’s set up:
-
I have two Airtable bases:
-
Instruction Cache: Contains
{Trigger Value}and{Instruction Text}for each possible checkbox selection. -
Generate Guides: Each Tally submission creates a record here with the list of selected features. includes link to generated docs, of which I’m currently getting multiple per form submission.
-
-
The scenario:
-
Starts with a Tally submission.
-
A “Set Variable” captures selected checkboxes.
-
An Iterator runs over each selected feature.
-
An Airtable Search Records module finds the matching
{Instruction Text}in the Instruction Cache base. -
Set Variable
-
Array Aggragator
-
Text Aggregator combines all found instructions with line breaks.
-
Google Doc is created from the aggregated text.
-
Airtable create a Record
-
Airtable Update a Record
-
Instead of getting one document per submission, I’m getting multiple documents, one for each instruction (checkbox selection).
I need a way to:
-
Collect all matched instruction texts across the iterations,
-
Aggregate them properly,
-
And create one single Google Doc per Tally submission.
Any help on where to place the aggregator or whether I need a code module to collect the instruction texts across bundles would be greatly appreciated.
Thanks!