- Filter with a simple
if-condition
(see if-conditions) - Process one at a time: rename fields, create a case, etc.
It’s almost always easier to deal with data one at a time than as a list!After scattering, chain actions like you would in a workflow that processes one data point at a time.
The output for every action between a scatter and gather action will be shown as N individual items in the workflow runs view.

Scatter

Gather
The gather action ONLY works downstream of a scatter action.
It will not work if you try to gather data that was not scattered.

Scatter, filter, then gather
In this example, we’ll scatter a list of integers, filter out the odd numbers with a simpleif-condition
on a reshape action, then gather the even numbers back into a single list.
1
Scatter
Scatter the list of integers into individual items.

2
Filter
Filter out the odd numbers with a simple And the if-condition to:
if-condition
on a reshape action.
Set the inputs for the reshape action to:
3
Gather
Gather the even numbers back into a single list.Set the inputs for the gather action to:

4
Run workflow
Notice how the results for actions after the scatter action are shown as N individual items.




