admin管理员组

文章数量:1319953

In PowerAutomate, I'm setting a counter to 0 and another variable (constRevCount) to a count of records returned from Dataverse. In this case, the number is 463. In the Limits, I've set the Count to 1000 and a Timeout of one minute (PT1M).

In my Do Until loop, the condition is @equals(variables('counter'), variables('constRevCount')) And I'm incrementing the counter after the actions in the loop.

This should translate to "when counter = 463, stop." But it's only performing the first iteration.

What am I doing wrong here?

I was expecting this to loop 463 times.

本文标签: power automateDo until only showing 1 iteration when there should be hundredsStack Overflow