Nathansav, I have tried writing this piece of code to check each policy no in Access table and then populating Scandate and BatchNo in the corresponding rows in the sheet but it doesn't work and gives me Application defined error. I hope you can make the changes accordingly..
Private Sub Workbook_Open()
Dim cn As ADODB.Connection
Dim rs As ADODB.Recordset
' connect to the Access database
Set cn = New ADODB.Connection
cn.Open "Provider=Microsoft.Jet.OLEDB.4.0; " & _
"Data Source=J:\Copy database.mdb;"
Set rs = New ADODB.Recordset
Dim ws As Worksheet
Dim i As Long
Dim j As Long
Dim k As String
j = 2
k = 2
'rs.Open strSql, cn
Set ws = ThisWorkbook.Worksheets("Sheet2")
i = ws.UsedRange.Rows.Count
Do While j <= i
strSql = "Select * from jabberwocky where PolicyNo ='" & ws.Cells(RowNo, j) & "'"
rs.Open strSql, cn
If Not rs.EOF Then
Do
ws.Range("I" & RowNo) = rs![Scandate]
ws.Range("J" & RowNo) = rs![BatchNo]
rs.MoveNext
Loop Until rs.EOF
End If
j = j + 1
Loop
End Sub
Bookmarks