How to get data from different bundles

Hi, I’m hoping somebdoy can help me with an bundle issue

I’m trying to grab the “content” for bundle 1,2 and 3 and have them put into 3 seperate “get variable modules” as seperate values.

So I would have one varibale for “Name” , one for “job position” and one for “Key information”

Does anybody know what function I should be using to grab the content for each? I think it maybe a “getmap” function with bundle order postion but I’m not sure

Thanks!

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 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.

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

Example

Here is an example of how your scenario could look:

This is just an example. Your final solution may or may not look like this depending on your requirements.

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.

What if I wanted yo just grab one item from one of the bundles. Would I need to use the mapping function? thanks!

I figured it out. i used this function:

{{get(64.array; 4)}}

3 Likes