#Error in output query

Mariyka1

New Member
Joined
Nov 1, 2016
Messages
44
Hello,
I have this formula in access - that converts different formatted phone numbers into a numeric field - because some fields are blank it give me an #Error message. I tried to run the query and append it separately to a table (with a right join) - excluding Nulls, etc. But I cant seem to get rid of the #Error . and I dont want to completely exclude the records that dont have phone numbers I just need them to show up as Null fields


Any insight is appreciated!!

Heres the formula that I use:
Replace(Replace(Replace(Replace([Data-Opportunities TS-BB-2].[Phone],')',''),'(',''),'-',''),' ','')
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Have you tried using the Nz function?
Maybe something like:
Code:
[COLOR=#333333]Replace(Replace(Replace(Replace(Nz([Data-Opportunities TS-BB-2].[Phone],""),')',''),'(',''),'-',''),' ','')[/COLOR]
 
Upvote 0

Forum statistics

Threads
1,213,557
Messages
6,114,291
Members
448,564
Latest member
ED38

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