changing the design of a telephone nnumber

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In an Access Query, I need to make this telephoen number (555)281-7107 to
read like: 5552817107 (no parenthesis or dash)

So new to Access and really need some help. I really appreciate it.
 
In an Access Query, I need to make this telephoen number (555)281-7107 to
read like: 5552817107 (no parenthesis or dash)

So new to Access and really need some help. I really appreciate it.

NewPhone:
Replace(Replace(Replace(Replace([PhoneField],"(",""),")",""),"-",""),"
","")

Includes removing the space which is usually placed after the area
code (555) 281-7107
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top