Atif Hasan
New member
- Local time
- Today, 08:20
- Joined
- Jun 14, 2022
- Messages
- 5
Using someone's code found on internet and modified it I want to use cell value from Excel sheet. It is picking the value from the cell but not searching the record in my access database to update the fields of the same record. Can u please help me out. Thanks. Records are adding without any problem as i am using other code for that purpose.
Public Const Conn As String = “Data Source= C:\Users\Atif\Desktop\New Database\Sample.accdb;”
Sub ADODBUpdating()
On Error GoTo ErrorHandler
Dim sql As String
Dim rs As ADODB.Recordset
Dim cn As New ADODB.Connection
Dim id As String
id = Range(“H1”)
cn.Open “Provider=Microsoft.ACE.OLEDB.12.0; ” & Conn
sql = “SELECT * FROM Table1 WHERE Invoice = ” & id
Set rs = New ADODB.Recordset
rs.Open sql, cn, adOpenDynamic, adLockOptimistic
‘Open RecordSet
With rs
If Not .BOF And Not .EOF Then
‘Ensure that the recordset contains records
‘If no records the code inside the if…end if
‘statement won’t run
.MoveLast
.MoveFirst
‘Not necessary but good practice
‘If .Supports(adUpdate) Then
‘It is possible that the record you want to update
‘is locked by another user. If we don’t check before
‘updating, we will generate an error
![Client] = Range(“B5”).Value
.Update
‘And finally we will need to confirm the update
‘End If
End If
.Close
‘Make sure you close the recordset…
End With
ExitSub:
Set rs = Nothing
‘…and set it to nothing
Exit Sub
ErrorHandler:
Resume ExitSub
End Sub
Public Const Conn As String = “Data Source= C:\Users\Atif\Desktop\New Database\Sample.accdb;”
Sub ADODBUpdating()
On Error GoTo ErrorHandler
Dim sql As String
Dim rs As ADODB.Recordset
Dim cn As New ADODB.Connection
Dim id As String
id = Range(“H1”)
cn.Open “Provider=Microsoft.ACE.OLEDB.12.0; ” & Conn
sql = “SELECT * FROM Table1 WHERE Invoice = ” & id
Set rs = New ADODB.Recordset
rs.Open sql, cn, adOpenDynamic, adLockOptimistic
‘Open RecordSet
With rs
If Not .BOF And Not .EOF Then
‘Ensure that the recordset contains records
‘If no records the code inside the if…end if
‘statement won’t run
.MoveLast
.MoveFirst
‘Not necessary but good practice
‘If .Supports(adUpdate) Then
‘It is possible that the record you want to update
‘is locked by another user. If we don’t check before
‘updating, we will generate an error
![Client] = Range(“B5”).Value
.Update
‘And finally we will need to confirm the update
‘End If
End If
.Close
‘Make sure you close the recordset…
End With
ExitSub:
Set rs = Nothing
‘…and set it to nothing
Exit Sub
ErrorHandler:
Resume ExitSub
End Sub