# Combine multiple contents from BUNDLE into a single variable

**URL:** https://community.make.com/t/combine-multiple-contents-from-bundle-into-a-single-variable/44643
**Category:** Questions
**Tags:** api
**Created:** [July 4, 2024, 2:37pm UTC](https://community.make.com/t/combine-multiple-contents-from-bundle-into-a-single-variable/44643 "2024-07-04T14:37:51Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Rafael\_Zarro](https://dub1.discourse-cdn.com/flex013/user_avatar/community.make.com/rafael_zarro/32/40502_2.png) [@Rafael\_Zarro](https://community.make.com/u/Rafael_Zarro)
#### Post date: [July 4, 2024, 2:37pm UTC](https://community.make.com/t/combine-multiple-contents-from-bundle-into-a-single-variable/44643/1 "2024-07-04T14:37:51Z")

</div>

Hello, good morning 🙂 From one module, several bundles come out, and within each one there is an item with content… I want to join all the contents of the bundles into a single variable… how can I do it? Here is the image. Thank you very much 🙂

 ![CleanShot 2024-07-04 at 10.36.26@2x](https://europe1.discourse-cdn.com/flex013/uploads/make/original/3X/f/b/fbc2cdbee4868a6b8343f1fb0f136470e9d8c256.png)

---

<div class="post-metadata">

### Author: ![ManishMandot](https://dub1.discourse-cdn.com/flex013/user_avatar/community.make.com/manishmandot/32/25887_2.png) [@ManishMandot](https://community.make.com/u/ManishMandot)
#### Post date: [July 4, 2024, 2:44pm UTC](https://community.make.com/t/combine-multiple-contents-from-bundle-into-a-single-variable/44643/2 "2024-07-04T14:44:17Z")

</div>

Hey @Rafael_Zarro

using a text aggregator you can achieve this.  
 ![image](https://europe1.discourse-cdn.com/flex013/uploads/make/original/3X/e/a/eac02bafd5c52b3b31dc0901d91c0ac9dfb1c421.png)

---

<div class="post-metadata">

### Author: ![Rafael\_Zarro](https://dub1.discourse-cdn.com/flex013/user_avatar/community.make.com/rafael_zarro/32/40502_2.png) [@Rafael\_Zarro](https://community.make.com/u/Rafael_Zarro)
#### Post date: [July 4, 2024, 5:15pm UTC](https://community.make.com/t/combine-multiple-contents-from-bundle-into-a-single-variable/44643/3 "2024-07-04T17:15:06Z")

</div>

Great has worked perfectly for me. Thank you so much 🙂

---

<div class="post-metadata">

### Author: ![samliew](https://dub1.discourse-cdn.com/flex013/user_avatar/community.make.com/samliew/32/13327_2.png) [@samliew](https://community.make.com/u/samliew)
#### Post date: [July 5, 2024, 4:18am UTC](https://community.make.com/t/combine-multiple-contents-from-bundle-into-a-single-variable/44643/4 "2024-07-05T04:18:32Z")

</div>

Every result (item/record) from a search/match module will output a bundle. To “combine” them into a single structure, you’ll need to use an aggregator of some sort.

[Aggregators](https://www.make.com/en/help/modules/aggregator.html) are modules that accumulate multiple bundles into one single bundle. An example of a commonly-used aggregator module is the [Array aggregator](https://www.make.com/en/help/tools/flow-control.html#array-aggregator) module. The next popular aggregator is the [Text Aggregator](https://www.make.com/en/help/tools/tools.html#text-aggregator) which is very flexible and has applies to many use-cases.

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

- [Array aggregator](https://www.make.com/en/help/tools/flow-control.html#array-aggregator)
- [Text aggregator](https://www.make.com/en/help/tools/tools.html#text-aggregator)
- [Numeric aggregator](https://www.make.com/en/help/tools/tools.html#numeric-aggregator)
- [Table aggregator](https://www.make.com/en/help/tools/tools.html#table-aggregator)
- [JSON aggregator](https://www.make.com/en/help/tools/json.html#aggregate-to-json)
- [CSV aggregator](https://www.make.com/en/help/apps/file-and-document-management/csv.html#create-csv)
- [Archive (ZIP) aggregator](https://www.make.com/en/help/apps/built-in-apps/archive.html#create-an-archive-973677)
- _other app-specific aggregators_

The Array Aggregator module allows you to build a complex array of collections for a later module’s field to map multiple items (collections) to it.

Here is an example of using the “Target structure type” of an Array Aggregator module:

 ![Screenshot_2024-01-17_100113](https://europe1.discourse-cdn.com/flex013/uploads/make/original/3X/b/e/bea4ecffec9daf39ca9cba77c0b2a40d160e7292.png)

As you can see, the “Map” toggle on fields are used when you have an array. You can easily build an array variable to map to a field, by using an Array Aggregator module and select the “Target Structure Type” as the future field you want to map the array into.

[samliew](https://samliew.com/services) – [request private consultation](https://samliew.com/request-quote?ServiceType=Automation%20Consultation&Referrer=Make)

> Join the [Make Fans](https://samliew.com/make-discord-invite) Discord server to [chat](https://samliew.com/make-discord-invite) with other makers!

---

<div class="post-metadata">

### Author: ![Make\_Bot](https://dub1.discourse-cdn.com/flex013/user_avatar/community.make.com/make_bot/32/14661_2.png) [@Make\_Bot](https://community.make.com/u/Make_Bot)
#### Post date: [July 19, 2024, 4:44am UTC](https://community.make.com/t/combine-multiple-contents-from-bundle-into-a-single-variable/44643/5 "2024-07-19T04:44:13Z")

</div>


