I have the following requirement in my project. I have 10 variables like ID1 =20,id2 = 10, ID3 = 40............ID10 = 30
I have to put this value of the variables to another variable using loop. I coded like this and I am not getting the desired output.
Do I = 1 to 10
x = Id||I
Say X
End
x = Id||I
Say X
End
and Output is ID1,ID2,ID3......ID10
It is taking it as 'Literal ID1' instead of Variable name.
Can I have any other alternate solution to resolve this issue?
Thanks & Regards,
Mahesh Balasubramanian