Two (or more) Array Values in a one line

Hi All,
I’m struggling with something propably very easy to solve, but I spend hours to solve it by myself, and now I’m asking for support.

I have a simple Array

What I tried to accomplish was create a list of array items with 2 or more value in one line

I use a combination of map() & join() function to get a list of Array items

{{join(map(10.array; “Data”); newline)}} - for list of dates

{{join(map(10.array; “Kwota”); newline)}} - for list of values

How to combine two Array items in one line

“Data1” “Kwota1”
“Data2” “Kwota2”
“Data3” “Kwota3”

even Make.com AI give up with this task

Welcome to the Make community!

You need to put the Array variable in an Iterator module, then use a Text Aggregator.

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:

For more information, see

Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —

Getting Started

Help Centre Basics

Articles & Videos

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.