Feb 4, 2004 #1 fludan Technical User Feb 1, 2002 41 US Hi I would like to import a list of phone number (000-000-0000) and a would like to format them to a number (0000000000) is this possible? Thank Fran
Hi I would like to import a list of phone number (000-000-0000) and a would like to format them to a number (0000000000) is this possible? Thank Fran
Feb 4, 2004 #2 footbinc IS-IT--Management Jan 29, 2004 4 CA You could connect a recordset to the imported data then use the Replace function in VBA: NewPNString = Replace(MySTRING, "-", "" where mystring is the phone number with dashes and NewPNString has no dashes Upvote 0 Downvote
You could connect a recordset to the imported data then use the Replace function in VBA: NewPNString = Replace(MySTRING, "-", "" where mystring is the phone number with dashes and NewPNString has no dashes