HELP!

For Each

For Each (similar to for, sometimes called an iterative for-loop) is a control flow statement for traversing items in a collection. In XpertScript terms, it allows us to loop over elements in an array or all values in a list question.

The example below shows how we can iterate over a list object within the loop, logging each value separately within the list as we go along.

On This Page