Dear Statalisters,
I have just posted an updated version of my program table1_mc on SSC. To make use of the ability to put the output into a docx file, version 15.1 is required, otherwise version 14.2.
. sysuse auto, clear
. generate much_headroom = (headroom>3)
. table1_mc, by(foreign) vars(price conts \ weight contn %5.0f \ rep78 cate \ much_headroom bin) nospace clear
. table1_mc_dta2docx using "C:\example Table 1.docx", replace tablenumber("Table 1.") tabletitle("Car characteristics by car type.") footnote("Foreign cars included Audi, Datsun, Toyota and VW cars.")

PS. First announcement was in May 2017 https://www.statalist.org/forums/for...r-a-manuscript
I have just posted an updated version of my program table1_mc on SSC. To make use of the ability to put the output into a docx file, version 15.1 is required, otherwise version 14.2.
. sysuse auto, clear
. generate much_headroom = (headroom>3)
. table1_mc, by(foreign) vars(price conts \ weight contn %5.0f \ rep78 cate \ much_headroom bin) nospace clear
. table1_mc_dta2docx using "C:\example Table 1.docx", replace tablenumber("Table 1.") tabletitle("Car characteristics by car type.") footnote("Foreign cars included Audi, Datsun, Toyota and VW cars.")
PS. First announcement was in May 2017 https://www.statalist.org/forums/for...r-a-manuscript
Comment