Opening Excel Files
I am creating an excel file using the following commands (with lots of code before that of course)
DoCmd.TransferSpreadsheet acExport, , "First Pass Yield Chart Query", "W:\edsplus\applications\0cmad\cmad_chart_spreadsh eet.xls", True, "First_Pass_Yield_Data"
DoCmd.TransferSpreadsheet acExport, , "Average Temp Table", "W:\edsplus\applications\0cmad\cmad_chart_spreadsh eet.xls", True, "First_Pass_Yield_Sum_Average"
And this creates the excel file and puts it in the file location folder but I need to know how I can make it so that this file also gets opened, thanks guys.
|