How do I flatten all of the contents of an an array and it's collections into a single text string?

Hello,
I am trying to flatten all of the contents of an array, with includes collections into a single text string. The collections all have a Name: and a Value:


So for the this array, the output should look like " Left Side: Pristidae (Sawfishes), Right Side: Rhinobatidae (Guitarfishes), Order Notes: order notes ray mug"
or something like that.

Use an Iterator module with the Properties variable.

Use a Text Aggregator module to combine everything into a single text string.

Every result (item/record) from a iterator module will output a bundle. To “combine” them into a single structure, 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 has applies to many use-cases.

2 Likes

Thank you very much for your help. I will give this a try. I was hoping I could use some kind of formula for this but alas.