Hi Guys,
I created a module to import all of the worksheets from a static list of excel files.
However when the program finnishes excel is still running as a process.
my code is
If i remove the line
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "MyOne", strFile, True, strRange, True
Excel will close, but if its in there it wont.
Any help would be appreiciated.
Batty
I created a module to import all of the worksheets from a static list of excel files.
However when the program finnishes excel is still running as a process.
my code is
Code:
Sub ImportExcelData()
Dim strFile As String
Dim strFilter As String
Dim objXL As Object
Dim objXLWB As Excel.Workbook
Dim objXLWS As Excel.Worksheet
Dim objXLRNG As Excel.Range
Dim MySheet As String
Dim strRange As String
Set objXL = CreateObject("Excel.Application")
Set rstimportdata = CurrentDb.OpenRecordset("Import Files", dbOpenTable)
Do
strFile = rstimportdata("Path")
If strFile = "" Or Null Then
rstimportdata.MoveNext
Else
Set objXLWB = objXL.Workbooks.Open(strFile)
For Each objXLWS In objXLWB.Worksheets
If objXLWS.Name <> "Cover Sheet" Then
Set objXLRNG = objXLWS.UsedRange
strRange = objXLWS.Name & "!" & objXLRNG.Address(False, False, xlA1, False)
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "MyOne", strFile, True, strRange, True
End If
Next
Set objXLWB = Nothing
Set objXLWS = Nothing
rstimportdata.MoveNext
End If
Loop Until rstimportdata.EOF
objXL.Quit
Set objXLWB = Nothing
Set objXLWS = Nothing
Set objXLRNG = Nothing
Set objXL = Nothing
End Sub
If i remove the line
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "MyOne", strFile, True, strRange, True
Excel will close, but if its in there it wont.
Any help would be appreiciated.
Batty