Formatting phone number in Excel from Access

Euler271

New Member
Joined
Dec 4, 2017
Messages
31
I'm trying to enter a formula into an Excel worksheet using VBA in Access. Specifically, I'm trying to format the phone numbers located in an adjacent column to where I'm trying to put the formula. I'm using the REPLACE function but I'm getting error messages. Here's the line:

xlWs.Range("AD2").Formula = "=REPLACE(REPLACE(AC2,4,0," - "),8,0," - ")"

You can see that I'm trying to enter hyphens in the fourth and eighth spots in the number. In other words,

xxxxxxxxxxx -> xxx-xxx-xxxx

Is there a better way to do this or how do I fix my function?

Thanks for the help.
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
I found the answer to my own question: I just replaced the double quotes with two double quotes and it worked.

xlWs.Range("AD2").Formula = "=REPLACE(REPLACE(AC2,4,0,""-""),8,0,""-"")"
 
Upvote 0

Forum statistics

Threads
1,215,061
Messages
6,122,922
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top