I have multiple queries that output to a specific folder, however i want to join a few of them, so instead of seperate files, One Excel file with multiple tabs....Is this possible?
Here is what i got so far:
DoCmd.OutputTo acOutputQuery, "Citidel Vs Jan 2011 Breaks", acFormatXLS, "C:\Documents and Settings\hrelucio\Desktop\ARCA Project File\EXCEL FILES\Output Folder\Citidel.xls", False
DoCmd.OutputTo acOutputQuery, "Citidel2 Vs Jan 2011 Breaks", acFormatXLS, "C:\Documents and Settings\hrelucio\Desktop\ARCA Project File\EXCEL FILES\Output Folder\Citidel2.xls", False
DoCmd.OutputTo acOutputQuery, "Citidel3 Vs Jan 2011 Breaks", acFormatXLS, "C:\Documents and Settings\hrelucio\Desktop\ARCA Project File\EXCEL FILES\Output Folder\Citidel3.xls", False
I want to combine all 3 files into one file with 3 tabs

End Function
Here is what i got so far:
DoCmd.OutputTo acOutputQuery, "Citidel Vs Jan 2011 Breaks", acFormatXLS, "C:\Documents and Settings\hrelucio\Desktop\ARCA Project File\EXCEL FILES\Output Folder\Citidel.xls", False
DoCmd.OutputTo acOutputQuery, "Citidel2 Vs Jan 2011 Breaks", acFormatXLS, "C:\Documents and Settings\hrelucio\Desktop\ARCA Project File\EXCEL FILES\Output Folder\Citidel2.xls", False
DoCmd.OutputTo acOutputQuery, "Citidel3 Vs Jan 2011 Breaks", acFormatXLS, "C:\Documents and Settings\hrelucio\Desktop\ARCA Project File\EXCEL FILES\Output Folder\Citidel3.xls", False
I want to combine all 3 files into one file with 3 tabs

End Function
Last edited: