Try the following...
use timc1, clear
forvalues i=2/10 {
append using timc`i'
}
David
[email protected]
-----Original Message-----
From: Leonelo Bautista [mailto:[email protected]]
Sent: 24 August 2004 16:40
To: [email protected]
Subject: st: append multiple data sets
I'm trying to append multiple datasets, but "append using" only adds two
datasets at a time. I tried the following program to append "timc1.dta",
"timc2.dta", "timc3.dta"... in one step, but it only appends two datasets.
********************************
program define apx
local i = 1
while `i'<=10 {
use timc`i', clear
append using timc`i'
local i = `i' + 1
}
end
apx
********************************
I'll appreciate any suggestions on how to accomplish this task.
Leonelo Bautista
*
* 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/
*
* 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/