I want to search a record where the value containing ' character, but it result an error. Here's the example
FindText = "Joy's car"
With rs_temp
.MoveFirst
.Find "item = '" & UCase(FindText) & "'"
end with
but if i change the FindText = "Joys car" the code running with no errors.
How can i search record that contain ' character ?
FindText = "Joy's car"
With rs_temp
.MoveFirst
.Find "item = '" & UCase(FindText) & "'"
end with
but if i change the FindText = "Joys car" the code running with no errors.
How can i search record that contain ' character ?