I have a loop issue in the Excel file. I've prepared a table with Vendor, Material and order Quantity as shown below:
Vendor |
Material |
Quantity |
25000 |
1545454 |
100 |
64003 |
7854786 |
1024 |
25000 |
5896471 |
250 |
25000 |
3336661 |
900 |
64003 |
7854786 |
2048 |
25000 |
3336691 |
900 |
I wanted to validate the table if there is any redundancy in the material and vendor column. I have created 6 variables, 2 variables for each of the three columns. I have named them v1,m1,q1 and v2,m2,q2. I have also used 2 iterators- iterator1 and iterator2 whose value I am incrementing in two loops.
Here is the screenshot of what the code looks like:
This code is giving me an error, the loop runs for an infinite number of times. Can someone help me fix this?