D
Don
I want to write a Access SQL statement that when using a field in my where
clause does not look at certain characters stored in a field. I tried to
user the replace function but it doen't appear in the correct format
Example of data stored in field SSN 111-22-3333.
User type into text box 1112
SELECT tblUser.ID, tblUser.Lastname FROM tblUser WHERE
replace(tblNotesData.InvestorSSN,"-","") like '*1112*'
Thanks
Don
clause does not look at certain characters stored in a field. I tried to
user the replace function but it doen't appear in the correct format
Example of data stored in field SSN 111-22-3333.
User type into text box 1112
SELECT tblUser.ID, tblUser.Lastname FROM tblUser WHERE
replace(tblNotesData.InvestorSSN,"-","") like '*1112*'
Thanks
Don