Statalist The Stata Listserver


[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

st: Foreach nested in Foreach


From   Socrates Mokkas <[email protected]>
To   [email protected]
Subject   st: Foreach nested in Foreach
Date   Wed, 18 Oct 2006 15:27:00 +0100

Hi All,

I have the do file below and apart from other problems tah one I have is that Stata says that "option foreach is not allowed". Any suggestions? Can you identify other problems with the code?

#delimit;
su group, meanonly
foreach i of num 1/`r(max)' {;
levelsof bvd_id_number, local(levels)
foreach l of local levels {;
local k=1
while `k'<=`year_count' if bvd_id_number==`l' {;
replace gamo=gamo + (tax[_`l']-tax[_`k'])*ratio_assets[_`k']
local k=`k'+1
};
};	
};

Many thanks.

Regards,
Socrates
*
*   For searches and help try:
*   http://www.stata.com/support/faqs/res/findit.html
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index