Hi,
I have a cobol array in the following way
9700 010114 010214 10 C
9701 010114 010214 10 C
9702 010214 010214 30 E
9703 010314 010314 30 E
9704 010214 010214 30 E
9705 010114 010214 10 C
so, i have to sum up amount of 9700,9701,9705 and 9702,9704 i.e 10+10+10 = 30 , 30+30 = 60
how can i achieve this using a cobol program need help in array handling.
Thank you.