All, using access 2010. I have 3 queries I need to export to 3 different excel spreadsheets to one folder. So when I use the code
DoCmd.OpenQuery "qry1"
DoCmd.OutputTo acOutputQuery, "qry1", acFormatXLSX
How can I save the query to folder created at the time of the export? Ex. create the folder to C:\20110811NewFolderName export query without having the user to have to create the folder before saving
. Thanks