Hi,
I have to do a procedure for multiple subsets of data repeatedly. I defined three variable lists,
. Based on the value of my iterable, I then want to select the variable list.
However, I am struggling with implementing this.
Some insights as to how this ought to work would be greatly appreciated!
Thanks,
Alex
I have to do a procedure for multiple subsets of data repeatedly. I defined three variable lists,
Code:
A_var B_var C_var
However, I am struggling with implementing this.
Code:
foreach method in A B C {
if `method' == A {
vl create local_varlist = A_var
}
...
vl drop local_varlist
}
Thanks,
Alex

Comment