Hi Team,
I’ve got a Gravity Form that is writing to Monday.com.
The main form contains a sub form that allows the user to add multiple rows of data. These extra rows get written as seperate entries in that form.
I can successfully write the main form data to Monday.com.
I can successfully write a SINGLE subform entry to Monday.com.
BUT… when there are two subform entries, i’m just stuck.
The subform entries appear like this in the main form data bundle:
So, how do i essentially do this:
For Each subform.ID {
Get all the values (name, type, breed),
Append values comma separated to each field (eg: ‘Name1, Name2, Name3’ ; ‘Dog,Cat,Fish’ ; ‘Husky,Persian,Goldfish’)
}
I’ve tried using the aggregator, and iterator modules. But i just can’t wrap my head around it.
The current flow looks like this:
Main Form > country conversion x 2 > Get subform entries > Create new record in Monday
I’d appreciate any help or guidance.