skip function in Power Automate
In this exercise, we will learn how to use the skip function of power automate. The skip function is used to skip the first count of elements from the array. The array is given as the first argument and the count is given as the second argument in the function.
Let’s create an array variable with name FirstArray, as shown in the image below.
To see the output, we are using the Compose action of power automate. Use the dynamic expression given below to get the array output after skipping the first count of elements from the array.
Power Automate
skip(variables('FirstArray'),2)
We can see the output in the compose action that after skipping the first two elements, all other elements are returned in the output.