Forum Discussion
SumanthKotha
9 years agoOccasional Contributor
Use for loop like below
For Loop Variables.j, 0, Variables.PaymentItemsCount - 1, 1
Since your array starts from 0 you can navigate to Variables.PaymentItemCount -1 (if you have 3 items then Variables.PaymentItemCount = 3 and loop is j=0, j=1 and j=2)
I hope it will solve your issue.