Determine the current iteration within a loop

Options
Is it possible to determine the current iteration a loop is in?

For example, I have 3 records that I am using a loop on, and I want to build logic into the loop to only run a specific action if the current loop iteration is the first.

I was thinking about building a counter within the loop, but thought there might be a simpler way to achieve this requirement.

Comments