Several bundles to one array

Hi guys,
i have a scenario that in one step a google calendar module produce an output of several bundles ( for example below picture). In each bundle i have a start and end date. I want to set the dates in one array. Like [start,end,start,end,start,end,…]. How can i do this?

Hello @Ali_Soroush,

There are at least a couple ways to handle this.
One way is to add a Text Aggregator configured like this:

This will give you a comma-separated list of dates. Use split() function to split that list by comma into an array.
image

image

image

3 Likes

Thank you @Donald_Mitchell. It worked for me as my wish.

2 Likes