P
Pat
I need to be able to import data into a table from Excel 2.1 spreadsheets. I
know it is a very old version, but we have a manufacturer who sends reports
via this meathod. Short of a user manually converting the documents we would
prefer to automate it in Access. The problem I am runing into is the
following sample line.
Dim rs2 As New ADODB.Recordset
Dim cnn2 As New ADODB.Connection
Dim cmd2 As New ADODB.Command
With cnn2
..Provider = "Microsoft.Jet.OLEDB.4.0"
..ConnectionString = "Data Source="c:\temp.xls;" & "Extended Properties=Excel
8.0;"
..Open
End With
Since the docuent is v2.1 I can't open it withe the Extended option, no
matter what combination I try.
Any suggesttions are welcome.
know it is a very old version, but we have a manufacturer who sends reports
via this meathod. Short of a user manually converting the documents we would
prefer to automate it in Access. The problem I am runing into is the
following sample line.
Dim rs2 As New ADODB.Recordset
Dim cnn2 As New ADODB.Connection
Dim cmd2 As New ADODB.Command
With cnn2
..Provider = "Microsoft.Jet.OLEDB.4.0"
..ConnectionString = "Data Source="c:\temp.xls;" & "Extended Properties=Excel
8.0;"
..Open
End With
Since the docuent is v2.1 I can't open it withe the Extended option, no
matter what combination I try.
Any suggesttions are welcome.