Dear Statalist,
I am exporting a large number of excel sheets into a master excel document using the excel export function.I do something like this:
forval i=1/20 {
export excel varlist using masterdoc.xlsx, sheet(worksheet`i.xlsx, modify) first(var)
}
It works well and I like this option because I get to hide the worksheets and therefore I can keep them in the masterdoc (no need to bother about links and stuffs).
Yet, my master doc is about 20 mo and I need to export about 20 excel sheets. The process takes about 45 minutes in total.
I was hoping I could speed up the process using csv or binary excel file for my worksheets instead of xlsx but it looks like export excel does not accept these formats. Would you have a suggestion on how to speed up the process? I need to do the same procedure for 8 different masterdoc.xlsx which in total would take me a full 8 hours...
Thanks
I am exporting a large number of excel sheets into a master excel document using the excel export function.I do something like this:
forval i=1/20 {
export excel varlist using masterdoc.xlsx, sheet(worksheet`i.xlsx, modify) first(var)
}
It works well and I like this option because I get to hide the worksheets and therefore I can keep them in the masterdoc (no need to bother about links and stuffs).
Yet, my master doc is about 20 mo and I need to export about 20 excel sheets. The process takes about 45 minutes in total.
I was hoping I could speed up the process using csv or binary excel file for my worksheets instead of xlsx but it looks like export excel does not accept these formats. Would you have a suggestion on how to speed up the process? I need to do the same procedure for 8 different masterdoc.xlsx which in total would take me a full 8 hours...
Thanks
Comment