lukasikrob
Technical User
I would like to search and than replace values in Access table is there a code for this so I can use it in module?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim strSQL As String
strSQL = "UPDATE tblCategory " _
& "SET tblCategory.CatName = 'Hinge' " _
& "WHERE tblCategory.CatName = 'Bracket' "