You are not logged in. You can browse but not post. Login or Register by clicking 'Login or Register' at the top-right of this page. For more information on Statalist, see the FAQ.
Using a local variable to define the range of "forvalues"
Does Stata accept a local variable (here, `t') as part of a forvalues command range? As an example:
forvalues t = 1/20 {
forvalues i = `t’/50 {
CODE
}
}
Comment