Need help wich text aggregator

Hello everyone. Guys, help me understand why the text aggregator does not work. I get 10 values ​​in the iterator value. I need to get all the values ​​in one value or in one line. I try to use the text aggregator, but I get 10 values ​​in the output

Hello @forsubscription,
There is no need to use an Iterator you have a specific operation to iterate.

After your Airtable(Search Records) directly use the Text aggregator module.
Just make sure you use the Airtable(Search Records) as Source Module.

Then do other settings on Text aggregator.

This approach also saves you lots of operations. :slight_smile:


:bulb:P.S.: Always search first, Check Make Academy. If this is helpful, mark it as a solution and :+1:
Need expert help or have questions? Contact or comment below! :point_down:

1 Like

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:

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, it woks good