Hi All,
I have one table and this table has (N_REN_COUNT, N_END_COUNT) two-column then I need to consider N_REN_COUNT value and match with N_END_COUNTvalue.

Ex- according to the above image I need to match N_REN_COUNT = 0 and N_END_COUNT=0 it’s one loop, and the next round needs to match N_REN_COUNT = 1 and N_END_COUNT=1 but we can not match with Ren_count 1 and End_count 0. another round need to match Ren_count =2 and End_count= 0

According to the above image I need to capture
N_REN_COUNT, N_END_COUNT
0 1
1 1
2 0
3 0
4 0
Thanks