Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
SET A = 0;
FOR I = 1 TO 20
SET A = $(I) + 10;
NEXT I
My intension is to have another variable that should have a value of variable I + 10;
How can i do these here?
thanks
Sorry i should use LET for variable... thanks
Hi,
Right It would be like
Set A = 0;
FOR I = 1 TO 20
Let A = $(I) + 10;
NEXT I
Rgds
Anand