Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
i want create a N no of variable in script level .how i can do any one suggests me
v1=1,
v2=2,
v3=3,
v4=4,
.
..
vn=n like that
try this script
let n = 50;
let fieldName = 'V';
for i = 1 to n
let $(fieldName)$(i) = $(i);
next i