Is there a way to convert a number of dta files to tab separated files at once, without loading each data set into Stata?
Something like :
x<- get *.dta filenames from directory
foreach file_with_filename in x
convert to tab separated file
Apparently the outsheet function can be only used by referring to the dataset (or variable names) currently loaded in memory.
Thanks.