Processing each element in an array

Hi

I am working on an automation which sends a message to a Teams channel with all tasks due for today or tomorrow.

My current solution creates a random list in this format:

{{#each}}{{18.value}}


:bust_in_silhouette: {{31.assignee_name}}

:pushpin: {{18.content}}

{{30.project_name}}




" / each}}

This works, but I would like to group the tasks by name. See example:

Tasks due today:

assignee_name1
{{18.content}} #1
{{30.project_name}} #1

{{18.content}} #2
{{30.project_name}} #2

{{18.content}} #3
{{30.project_name}} #3

assignee_name2
{{18.content}} #1
{{30.project_name}} #1

{{18.content}} #2
{{30.project_name}} #2

Tasks due tomorrow:

… and so on.

You can see my setup here, I have two API-calls - one for tasks due today and one for tasks due tomorrow:

I have tried to use an array aggregator but this setup does not work:

I am bit of a novice in this. Can you please help? :slight_smile:

1 Like

Hi @Center_for_Offentlig

You can use either the Array Aggregator or Text Aggregator to map values from the iterator. When aggregating, group the values based on the assignment name by enabling the Show Advanced Settings option. Also set the iterator as source module.

array aggregator

text aggregator :

Best regards,
Msquare Automation
Platinum Partner of Make
@Msquare_Automation

1 Like

Hi there, thank you for your response :slight_smile:

My array aggregator already looks like this:

The problem is that the output comes out in collections:

And so when I set my text aggregator up as follows:

The output is this:
image