R
Richard
Hi all,
I import spreadsheets into a contacts style DB. I currently run update
queries to remove all the non numeric symbols like - ( ) . and spaces from
my phone field. My goal is to have a clean 10-digit phone number 9993334242.
I use this update query to remove hyphens.
UPDATE Contacts SET Contacts.Phone = Replace([Phone],"-","");
How can I remove all unwanted symbols with one click?
Thanks
Richard
I import spreadsheets into a contacts style DB. I currently run update
queries to remove all the non numeric symbols like - ( ) . and spaces from
my phone field. My goal is to have a clean 10-digit phone number 9993334242.
I use this update query to remove hyphens.
UPDATE Contacts SET Contacts.Phone = Replace([Phone],"-","");
How can I remove all unwanted symbols with one click?
Thanks
Richard