Several output bundle in a google sheet box

hello, I am French and new to make.

I would like to automate the scrapping of a shoe merchant in order to obtain the available sizes of the models that I have selected. I use Google Sheet “search rows”, in which are the URLs of my target products, then http “make a request” which visits the web pages in the spreadsheet, then Text parser “match pattern (advanced)” with this pattern: “label”:“(3[0-9]|4[0-9]|50)”,“products”:[“[^”]+"],“active”:1 , the results are correct :

but I would like them all to display in the same box at the same time, currently when starting the automation, the values ​​are displayed but one by one, at the end of the process it only one size left in the box :

whereas I would rather like this kind of result:

here are the parameters, do not hesitate to tell me if there are things to modify to achieve the results I want, Should we add a module, if so which one? and with what parameters?
thank you in advance

Welcome to the Make community!

Aggregators

Every result (item/record) from iterator/list/search/match modules will output a bundle. This can result in multiple bundles, which then trigger multiple operations in future modules (one operation per bundle). To “combine” multiple bundles into a single variable, you’ll need to use an aggregator of some sort.

Aggregators are modules that accumulate multiple bundles into one single bundle. An example of a commonly-used aggregator module is the Array aggregator module. The next popular aggregator is the Text Aggregator which is very flexible and can apply to many use-cases like building of JSON, CSV, HTML.

There are other types of aggregator modules, click the below links to find out more:

You simply need to use a Text Aggregator.

Hope this helps! Let me know if there are any further questions or issues.

@samliew

P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.

thank you very much, my problem is solved