11 lines
269 B
Plaintext
11 lines
269 B
Plaintext
program define torumm
|
|
syntax varlist ,File(string) [Replace msp]
|
|
tempname string
|
|
egen `string'=concat(`varlist')
|
|
if "`msp'"=="" {
|
|
replace `string'=subinstr(`string',"."," ",.)
|
|
}
|
|
*tab `string'
|
|
outsheet `string' using "`file'", `replace' nonames noquote
|
|
end
|