Usage Of Range Function In Power Automate

Introduction

In Power Automate, at times we need to have an array with integers starting from the specified index for doing different operations in the design of online exams or quizzes to provide random questions this function would be useful.

Step 1

Login to the required Power Apps environment using URL make.powerapps.com by providing username and password and click on Flows on the left-hand side as shown in the below figure.

Usage of Range Function in Power Automate

Step 2

After step 1, Click on New Flow and select instant cloud flow and provide the trigger as Manually trigger a flow and click on Create as shown in the below figure.

Usage of Range Function in Power Automate

Step 3

After step 2, name flow as Understanding Range Function and take compose function and provide step name as Generate Range of Integers and under inputs specify an expression as

range(startIndex: integer, count: integer)

first parameter as starting index to generate array and second parameter as the count where an integer number can be given as shown in the below figure.

Usage of Range Function in Power Automate

Step 4

After step 3, provide the value of in the input values as Inputs as,

range(6,7)

and click on ok / Update and save the flow as shown in the below figure.

Usage of Range Function in Power Automate

Step 5

After step 4, save the flow and proceed to test and run it and you can see the output as an array of integers with different values as shown in the below figure.

Usage of Range Function in Power Automate

Note

  1. Make sure to save and run the flow whenever you try expressions.
  2. As an example, I have considered this array, one can also use this range function in Apply to each action
  3. MS documentation is found here

Conclusion

In this way, we can easily get an array with integers starting from the specified index in Power Automate flow.


Similar Articles