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.