J
jkmccnh
I'm using Access 2000 SR1. How do I remove apostrophe from a field, Replace()
doesn't work in this version of Access according to my research? I've tried
using: Mid(strText, intStart, 1) = " " which will replace the apostrophe with
a space (O'Brien to O Brien). I need the apostrophe replaced with nothing
(i.e. O'Brien to OBrien). If I use: Mid(strText, intStart, 1) = "" then
nothing happens, the apostrophe remains. I'm obviously missing something, but
what? The ultimate purpose of this is to import payroll info from a .CSV file
and compare that data to login info in the database. Payroll uses the
person's legal name (O'Brien) but the login data uses a shortened name
(OBrien).
doesn't work in this version of Access according to my research? I've tried
using: Mid(strText, intStart, 1) = " " which will replace the apostrophe with
a space (O'Brien to O Brien). I need the apostrophe replaced with nothing
(i.e. O'Brien to OBrien). If I use: Mid(strText, intStart, 1) = "" then
nothing happens, the apostrophe remains. I'm obviously missing something, but
what? The ultimate purpose of this is to import payroll info from a .CSV file
and compare that data to login info in the database. Payroll uses the
person's legal name (O'Brien) but the login data uses a shortened name
(OBrien).