I have set up Power Automate to manually trigger a query which contains a list of features in ADO.
It then loops through the children of each Feature and I want it to sum up the total of Story Points of children per feature.
Currently my Increment Variable at the end is incrementing +1 if one of the children has 0 story points which is causing the total to be incorrect.
For example:
When running the below, i have 1 feature with 4 children.
1 child has 5 Story Points
1 child has 3 Story Points
2 children have 0 story points
Total should be 8 story points, but instead is returning 10 as the 2 remaining 2 User Stories are being counted as +1 each.
Any help to get the sum of story points per feature would be great.