# How to convert or add array values to a Google Doc

**URL:** https://community.make.com/t/how-to-convert-or-add-array-values-to-a-google-doc/76528
**Category:** Questions
**Tags:** arrays
**Created:** [March 25, 2025, 4:28pm UTC](https://community.make.com/t/how-to-convert-or-add-array-values-to-a-google-doc/76528 "2025-03-25T16:28:14Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Manoo\_Wali](https://avatars.discourse-cdn.com/v4/letter/m/9e8a1a/32.png) [@Manoo\_Wali](https://community.make.com/u/Manoo_Wali)
#### Post date: [March 25, 2025, 4:28pm UTC](https://community.make.com/t/how-to-convert-or-add-array-values-to-a-google-doc/76528/1 "2025-03-25T16:28:14Z")

</div>

Does anyone have a tutorial on how to take an array of elements (typeform) and convert them into or add them to a google document? I’m a bit stuck!

What I have so far is a Typeform module that collects information from a form, then what I do is pass that information to the Google document, however there are within the Typeform form there are 2 multiple select fields, and what happens is that these are seen as an array and what I get is a JSON error 400.

 ![Screenshot 2025-03-25 12.26.54](https://europe1.discourse-cdn.com/flex013/uploads/make/original/3X/7/2/72c03e54444674076afbf493db8700972df07c70.png)

---

<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: [March 25, 2025, 4:29pm UTC](https://community.make.com/t/how-to-convert-or-add-array-values-to-a-google-doc/76528/2 "2025-03-25T16:29:47Z")

</div>

Welcome to the Make community!

Use a Text Aggregator perhaps?

## “Looping” Through Array Items

When you see an ARRAY, think ITERATOR module.

 ![](https://europe1.discourse-cdn.com/flex013/uploads/make/original/3X/2/3/23a694ffc3939712667b383fd1b497de5d8afecb.png)

 ![](https://europe1.discourse-cdn.com/flex013/uploads/make/original/3X/b/b/bb0162b13bbd34dbfbb41c5c399be413a9b592ec.png)

Then,

## Combining Bundles Using Aggregators

Every result (item/record) from trigger/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](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 can apply to many use-cases like building of JSON, CSV, HTML.

You can find out more about the other types of aggregator modules here:

- [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_

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

— @samliew

P.S.: Investing some effort into the [Make Academy](https://academy.make.com) will save you lots of time and frustration using Make.

---

<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: [June 23, 2025, 3:42pm UTC](https://community.make.com/t/how-to-convert-or-add-array-values-to-a-google-doc/76528/3 "2025-06-23T15:42:33Z")

</div>


