|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
VeriSign Code Signing Digital Certificates provides assurance to end users. Read about this and more in the free white paper: “How to Digitally Sign Downloadable Code for Secure Content Transfer.” Learn More! |
|
#1
|
|||
|
|||
|
converting a list of fax numbers to Email
I am pretty new to MS Access but i know a lot of VB and other languages. I have a list of Fax numbers that we cant use because we use efax.com were I woudl have to email the fax message. I was wondering if there is an easy way to change all the Fax numbers over this format -> fax#@faxsend.com. Our fax numbers are in the form +1 (555) 555-5555, so i would need to convert that to just 15555555555.
Thanks Spindar |
|
#2
|
||||
|
||||
|
use the msaccess Replace function, to replace a character with an empty string, and nest it 5 times:
Code:
replace(
replace(
replace(
replace(
replace(faxno,'+','')
,'(','')
,')','')
,'-','')
,' ','')
http://rudy.ca/ |
|
#3
|
|||
|
|||
|
Thanks for your help rudy, i would have never found that
Spindar |
![]() |
| Viewing: Dev Shed Forums > Databases > Database Management > converting a list of fax numbers to Email |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|