I have an Insert Into Query and an Update Query that will bomb out if the user enters double quotes. I was thinking the syntax was
Function RemoveCharacters(x As String) As String
RemoveCharacters = Replace(x, """", "'")
Obviously this isn't working as I planned. Any information would be great!

Function RemoveCharacters(x As String) As String
RemoveCharacters = Replace(x, """", "'")
Obviously this isn't working as I planned. Any information would be great!