+ Reply to Thread
Results 1 to 18 of 18

Phone number format in vba text box?

  1. #1
    Registered User
    Join Date
    04-15-2012
    Location
    Washington DC
    MS-Off Ver
    Excel 2010
    Posts
    10

    Phone number format in vba text box?

    I have a userform with a text box and would like to have the format be in (###)###-#### format. Can someone help me with this code? Thanks in advance.

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Phone number format in vba text box?

    Please Login or Register  to view this content.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Registered User
    Join Date
    04-15-2012
    Location
    Washington DC
    MS-Off Ver
    Excel 2010
    Posts
    10

    Re: Phone number format in vba text box?

    Thanks, but the textbox now will default to 9725551215. Is there a way to have the box blank and let the user enter numbers that will automatically follow the (xxx)xxx-xxxx format? Thanks.

  4. #4
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Phone number format in vba text box?

    Hi aduma
    Perhap this
    Please Login or Register  to view this content.
    John

    If you have issues with Code I've provided, I appreciate your feedback.

    In the event Code provided resolves your issue, please mark your Thread as SOLVED.

    If you're satisfied by any members response to your issue please use the star icon at the lower left of their post.

  5. #5
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Phone number format in vba text box?

    Hello aduma ,

    This macro will format the phone number as you type. This example uses TextBox1 but can be used for any text box. Just copy the code between the Sub and End Sub statements and paste it in the KeyPress event for the text box you are using.
    Please Login or Register  to view this content.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  6. #6
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Phone number format in vba text box?

    @Leith Ross
    Wow...been looking for this for some time. Thank you.

  7. #7
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Phone number format in vba text box?

    Hello John,

    Glad you like it. I have wanted to write this for some time but the time never seemed right. It isn't perfect. It stills a need a tweak or two to deal with backspaces.

  8. #8
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Phone number format in vba text box?

    Hi Leith
    Well, if you get a better mouse trap please let us know. I've already incorporated your code into our Association's Data Base code and it's been appropriately attributed.
    Thanks again.
    Last edited by jaslake; 04-18-2012 at 11:18 PM.

  9. #9
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Phone number format in vba text box?

    Hello John,

    I will keep you posted on any updates. Thanks for the credit.

  10. #10
    Registered User
    Join Date
    11-19-2012
    Location
    USA
    MS-Off Ver
    2007
    Posts
    5

    Re: Phone number format in vba text box?

    I to just used this code to format a phone text box and it works great for me too. Thanks a millon!

  11. #11
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Phone number format in vba text box?

    Hi williesmith2008

    Yes this is a neat bit of Code...please make certain you give kudos to Mr Ross, the Author. Click on the Star at the bottom left of his post. Style points are always appreciated...it's how we get "paid".

  12. #12
    Registered User
    Join Date
    10-14-2014
    Location
    USA
    MS-Off Ver
    2013
    Posts
    3

    Re: Phone number format in vba text box?

    I know this is a bit old but I was wondering if this could be modified for international numbers?

    Cheers,
    Gino

  13. #13
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Phone number format in vba text box?

    Hello gino,

    Why not? Do you have a list of list of numbers and how they should be formatted? If you have a workbook that would be better.

  14. #14
    Registered User
    Join Date
    10-14-2014
    Location
    USA
    MS-Off Ver
    2013
    Posts
    3

    Re: Phone number format in vba text box?

    hi Leith,

    Wow - thanks - if you could take a try at this - that would be great. I don't have a workbook on this yet, but am looking to build out a userform where based on the country selected, maybe get the phone numbers (mobile & land) to take on the right format.
    So for example, I've got a Germany phone that looks like this - +49 89 3706 17067
    Australia or Japan - look like +61 2 9293 5666
    And in India a land line looks like +91 (080) 404440062 while a cell phone looks like 91 9620708001

    So definitely the country code +91 for example and then I guess (not sure how you'd work magic on this) but either 2 digits and a space or 1 digit and a space (from the examples above).

    Anyway - saw what you created and for the US, it's a big winner for sure and naturally, I thought - hmmm... how about non-US phone number formats!

    Cheers,
    Gino

  15. #15
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Phone number format in vba text box?

    Hello gino59,

    This is will take some time. International telephone numbers do have a preferred format but it is not always followed by everyone.

    This make it more difficult to parse. You may have to ask your users to enter the number using the preferred international format.

    Once that piece is in place then reset will be much easier.

  16. #16
    Registered User
    Join Date
    10-14-2014
    Location
    USA
    MS-Off Ver
    2013
    Posts
    3

    Re: Phone number format in vba text box?

    Hey Leith,

    Yeah - no worries - you're right - it is problematic and I just figured I'd throw it out there to see if you had already had something in mind. I might take a stab at creating a country list and the corresponding format. Then the trick would be how to get the textbox to first look up the country value (found elsewhere on the userform) and then apply the corresponding phone format to the phone textbox.

    Or as you mentioned - let the d@m!n users figure it out!!!

    Cheers,
    Gino

  17. #17
    Registered User
    Join Date
    02-03-2015
    Location
    No Where
    MS-Off Ver
    1
    Posts
    3

    Re: Phone number format in vba text box?

    Quote Originally Posted by Leith Ross View Post
    Hello aduma ,

    This macro will format the phone number as you type. This example uses TextBox1 but can be used for any text box. Just copy the code between the Sub and End Sub statements and paste it in the KeyPress event for the text box you are using.
    Please Login or Register  to view this content.
    How could you write this to handle multiple fields? What would be the best way to package this as a generic Sub routine and call it?

    I assuming internally you would use Me.Value etc but not sure how to pass the _KeyPress event.

    New to VBA - thanks

  18. #18
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Phone number format in vba text box?

    Jon, welcome to the forum

    Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1