Matt Price Currently no option will do that. However, with a little work you will probably be able to get what you want. The key is to look at what is left behind in the "dataset" after using the -clear- option.
Code:
sysuse auto, clear
table1_mc, by(foreign) vars(rep78 cate \) nospace clear
browse
foreach ending of any _0 _1 {
replace foreign`ending' = _columna`ending' in 3/L
}
table1_mc_dta2docx using "n only.docx", replace
export excel using "n only.xls", replace

Comment