Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
gen which = 1
gen min = area1
qui forval j = 2/40 {
replace which = `j' if area`j' < min
replace min = area`j' if area`j' < min
}