Forum Moderators: open
How can I remove only the quotation marks? I want to go through every entry and remove the quotation marks.
I tried the replace command, but it errors because I cannot have the quotation mark surrounded by quotation marks.
This is the code I used (partial):
dim str1
do until rs.eof
str1 = rs("F1")
str1 = replace(str1," " ","")
rs("F1") = str1
rs.update
rs.movenext
loop
Thanks