I would like to extract 3 columns from an google sheet and add them into a new sheet in a new workbook.
The two issues I’m having are:
- The ranges successfully extract each cell on the third column but not on the other two, it only takes the first column and iterates through that
- The iteration keeps going even after the total number of bundles. it for some reason duplicates the extraction of the third column (I also cant seem to limit it with a filter)
Ive tries, creating JSON, Parsing Json, iterating and aggregating.
I’ve also tried using one aggregator but it wont allow me to select multiple modules as inputs. and when I chain them together it cost me 20,000 operations…
Not sure which method is the best but none seem to work. The current methods I’ve tried requite 2-4 modules to iterate the same amount of times which seems quite costly for such a simple automation.
The extraction from the sheet seems to be good, even the iteration of the numbers(except for the issue of duplicate execution), but it wont do it for the name or amount column.
blueprint (3).json (64.1 KB)
Column 1:
Column 2:
Column 3:
The over execution issue:
First oppression is correct, but second doesn’t properly iterate. Only the Number (Numero) column iterates thought the array not the Name(Destinaire) and Amount (Montant):
The first iterator after the “create JSON”
The Parse JSON into “ROW”:
The last aggregator on the “ROW”:
Sheet output:
Ideally id like
NUMBER ID | NAME | AMOUNT|
Ive been stuck on this for a while, thank you.