I have an issue exporting the results of a query to xls file.
Seems to occur when query exceeds 17000ish lines otherwise functions fine.
Thought the issue might be xls own native restiction (65000ish lines) but this issue occurs way before breaching such.
Any ideas what the problem is and what the solution or alternative might be?
Seems to occur when query exceeds 17000ish lines otherwise functions fine.
Code:
DoCmd.OutputTo acOutputQuery, "qry_DetailsByRegime", acFormatXLS, "C:\Documents and Settings\" & NetworkUserName() & "\DetailsByRegimeExport" & Format(Now, "dd-mm-yyyy (hh-nn-ss)") & ".xls"
Thought the issue might be xls own native restiction (65000ish lines) but this issue occurs way before breaching such.
Any ideas what the problem is and what the solution or alternative might be?