While loop iteration stopped after five iterations

Hi,

When I trying to iterate process using while loop,iteration getting stopped after 5 runs. It’s just executing 5 runs. Please find the attached screenshot for reference. Total Count value is 44

Hi,

The loop will break when value of i.ToString < Total count.

You are also using incorrect conditional expression. Comparing a string value with integer value is not correct. Check data type of your argument and put conditions accordingly

Regards,
Amit Anand