I am trying to replace quote marks that are typed accidently by users in a table. I need to strip out the quote marks. I get a "Run Time error '13' Type mismatch" with this code. Here is the code.
DoCmd.RunSQL "UPDATE tblMemberInfo SET tblMemberInfo.F ullName = Replace([FullName],""*" & Chr(34) & "*"","");"
Is their a better way to search and replace quote marks without using the dialog box.
DoCmd.RunSQL "UPDATE tblMemberInfo SET tblMemberInfo.F ullName = Replace([FullName],""*" & Chr(34) & "*"","");"
Is their a better way to search and replace quote marks without using the dialog box.
Comment