I am using Access 2010 and trying to do a replace to remove a ' from a string and it does not work. I am using:
replace([myfield], "'", "")
It runs the query but does not work as I still see:
In the last 6 months, did you get information or
help from your health plan’s customer service?
I have several fields in this large database that have the ' and I need to remove them so it says plans or doctors instead of plan's or doctor's. Just as an example. I need to do this because this data is actually going into SQL and SQL uses ' ' to notate strings. So if I move this data into SQL I will see:
In the last 6 months, did you get information or
help from your health plan’s customer service? and where I see plan's it places plan in black and then ' in red and then s in black. I am not sure if anyone out there knows how SQL Server works but I have to remove ' from anything I have because of how SQL Server operates.