I have a little question about aclone command.
Now I make a test like this :
Code: Select all | Expand
do case
case indice = 1
arra_out = aclone(arra1)
case indice = 2
arra_out = aclone(arra2)
case indice = 3
arra_out = aclone(arra3)
case indice = 4
arra_out = aclone(arra4)
case indice = 5
arra_out = aclone(arra5)
endcase
If I have the variable indice that comes from a table, I have many situation and I prefer to
clone the array with a macro like :
Code: Select all | Expand
arra_out = aclone(&"arra" + str(indice,1))
but it doesn't work.
Is there a way to make this ?
Thans a lot
Massimo