Hi,
In script iam using Perform ..in which there is a changing paramter . because this perform is in a loop i want the value of changing parameter in previous iteration and add again to the same.
Perform form in program prog
using abc
changing xy.
in form i am using xy = xy + fgh. <--- here i want the xy value of previous iteration.
if i use like this
Perform form in program prog
using abc
using xy
changing xy. will it solve?