JonXL,
Thank you for responding. I use a procedure to export each query. Here is a typical example. The only difference would be the query and target file name:
Private Sub Export_PCMS_No_Notif_Click()
'Exports All PCMS IWRs with No Notification
DoCmd.SetWarnings False
DoCmd.OutputTo acOutputQuery, "50- PCMS No Notification", "ExcelWorkbook(*.xlsx)", "\\BRCNA01A\Shared\INSP- PCMS No Notification.xlsx", False, "", , acExportQualityPrint
DoCmd.SetWarnings True
MsgBox "PCMS IWRs With No Notification Export Complete", vbOKOnly, "Function Progress"
End Sub
Hopefully this helps. This issue is not a show-stopper but it is annoying and takes time on a repetitive task.
Ed