How to use break in Nested ForEach Loop

I have two for each loops, one nested inside the other. The outer for each loops through a datatable and has another for each loop inside it. I have used ‘break’ to come out of the inner for each loop when certain condition is met. But it seems to come out of the outer for each loop. Please help.

See attached example it will help you to understand -

Main.xaml (9.9 KB)

Hi Pukar , I have similar problem. I have two For Each loop outer loop have one another loop inside it. Inside loop is dependable with outside loop. After executing one iteration, the inside loop continues to iterate itself without going to next iteration from the outer loop. I dont have condition to match but after finishing 1st iteration in the both loop , another iteration should start from outer loop but not from the insdie.