Re: Array elements can only be selected using an integer index.
Hey @abeyenen72
The error you are getting is because you have a loop(Apply_to_each_2) and then get items inside it.
Because of this the get items is running twice.
So the expression you are using outside doesnt know which iteration's length you need.
So, you want the combined length of both the get items or separately.
To get combined length:
First initialize an integer variable.
Then inside the apply to each use action increment variable. In that write the above expression.
This will calculate length for all the iterations.
Then outside you can use a compose and add the variable in it and it will show you the combined length of array:


I hope this helps 🙂