REALLY Need Help on Appending data to Excel data

net

Registered User.
Local time
Today, 13:00
Joined
Mar 12, 2006
Messages
50
Hello,

I am exporting data from Access (2000) to Excel using a criteria form. I would like to append data to the Excel sheet without clearing the current data. How can I perform this function?

Here is part of my code:

<BEGIN CODE>
Set myXL = CreateObject("Excel.Application")
Set myWB = myXL.Workbooks.Open("C:\WO_Activity_Report.xls")
myWB.Sheets ("WO_Activity_Report")
myWB.Save
myXL.Quit
Set myXL = Nothing
<END CODE>

Your assistance is greatly appreciated.
:eek:
 

Users who are viewing this thread

Back
Top Bottom