Hi,
I have a couple of variable that i want to rename adding: "_usb" in front of each variable. I've read some post with basically the same question but my code still doesn't run.
Here the code i'm using :
Thanks!
I have a couple of variable that i want to rename adding: "_usb" in front of each variable. I've read some post with basically the same question but my code still doesn't run.
Here the code i'm using :
Code:
foreach v of varlist ... {
local lbl =strtoname("usb")
rename `v' `usb'
}

Comment