Trying to update multiple records on Access via Excel VBA

ARUNCHENNAI

Board Regular
Joined
Apr 24, 2017
Messages
66
I'm trying to update MULTIPLE records (field "category" = "PAINT") when another field (description) contains word "paint",
in access record through Excel VBA.
Below code doesn't through any error. But no data is updating.
The sql statement is working fine when I check in directly on Access quiery.

Kindly let me know where am I making the error and provide the solution. Regards Arun
Code:
Option Explicit
Dim ws As Worksheet
Dim con As ADODB.Connection
Dim dbpath
Dim sql As String, var1 As String, var2 As String
Dim i As Integer

Sub testmacro()
Set ws = ThisWorkbook.Sheets("WELCOME")
var1 = "'" & Update.Controls("TextBox1") & "'"
var2 = "'*" & Update.Controls("TextBox1") & "*'"
dbpath = ws.Range("Z1").Value
Set con = New ADODB.Connection
        With con
            .Provider = "   Microsoft.ACE.OLEDB.12.0"
            .ConnectionString = dbpath
            .Properties("Jet OLEDB:Database Password") = ""
            .Open
        End With
On Error GoTo errHandler:
sql = "UPDATE T_Consolidated_1 SET Category = 'PAINT' WHERE DESCRIPTION like '*paint*';"
con.Execute sql
con.Close
Set con = Nothing
MsgBox i & " records updated", vbInformation, "Status"
Application.ScreenUpdating = True
On Error GoTo 0
Exit Sub
errHandler:
Set con = Nothing
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure Category_Field_Update"
End Sub
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.

Forum statistics

Threads
1,223,246
Messages
6,170,988
Members
452,373
Latest member
TimReeks

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top