Stata The Stata listserver
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

st: RE: append multiple data sets


From   "David Harrison" <[email protected]>
To   <[email protected]>
Subject   st: RE: append multiple data sets
Date   Tue, 24 Aug 2004 16:48:25 +0100

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/



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