Hi everyone...
I've got some code to output the results from a stored procedure to a excel file, everything works fine.
however I've recently noticed that the results exported are being cut off.
I've checked that the correct number of results are being returned, and recieved at the front end.
So, the only candidate is the OutputTo command.
Is there a limit on the amount of records I can output using this?
My code is like:
Thanks Guys/Gals
--------------------
Procrastinate Now!
I've got some code to output the results from a stored procedure to a excel file, everything works fine.
however I've recently noticed that the results exported are being cut off.
I've checked that the correct number of results are being returned, and recieved at the front end.
So, the only candidate is the OutputTo command.
Is there a limit on the amount of records I can output using this?
My code is like:
Code:
DoCmd.OutputTo _
acOutputStoredProcedure, _
"EXEC SPROC_NAME Conditions", _
acFormatXLS, _
FileToSave, _
True
Thanks Guys/Gals
--------------------
Procrastinate Now!