Hi,
I have used the macro from this site to upload data from Excel sheet to Access database. But I am facing a complie error. I have used the following error. Please can anyone help me to correct it
Sub DAOFromExcelToAccess()
' exports data from the active worksheet to a table in an Access database
' this procedure must be edited before use
Dim db As Database, rs As Recordset, r As Long
Set db = OpenDatabase("D:\Database\db1.mdb")
' open the database
Set rs = db.OpenRecordset("BillingElement", dbOpenTable)
' get all records in a table
r = 3 ' the start row in the worksheet
Do While Len(Range("A" & r).Formula) > 0
' repeat until first empty cell in column A
With rs
.AddNew ' create a new record
' add values to each field in the record
.Fields("Server Name") = Range("A" & r).Value
.Fields("Client Name") = Range("B" & r).Value
.Fields("Activity Type") = Range("C" & r).Value
.Fields("Charge Type") = Range("D" & r).Value
.Fields("Location") = Range("E" & r).Value
.Fields("Activity Type Description") = Range("F" & r).Value
.Fields("Usage Quantity") = Range("G" & r).Value
.Fields("Rate") = Range("H" & r).Value
.Fields("Amount") = Range("I" & r).Value
.Fields("Start Date") = Range("J" & r).Value
.Fields("End Date") = Range("K" & r).Value
.Fields("Receiving cost center") = Range("L" & r).Value
.Update ' stores the new record
End With
r = r + 1 ' next row
Loop
rs.Close
Set rs = Nothing
db.Close
Set db = Nothing
End Sub
Bookmarks