+ Reply to Thread
Results 1 to 10 of 10

Phone Format - change value.

Hybrid View

  1. #1
    Registered User
    Join Date
    01-14-2008
    Posts
    18

    Phone Format - change value.

    PHONE formatting. Is there a way to create a macro to format the VALUE of the phone to be either (XXX) XXX-XXX or XXX-XXX-XXXX ??? I obviously can get it to look like this, but the value is just XXXXXXXXXX.


    Thanks much in advance!!!

  2. #2
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Smile

    Good afternoon jreimer

    Quote Originally Posted by jreimer
    Is there a way to create a macro to format the VALUE of the phone to be either (XXX) XXX-XXX or XXX-XXX-XXXX ???
    You don't need to use a macro - just use a custom format.
    Select your cell / range.
    Press Ctrl + 1.
    On the number tab, goto Custom in the Category box and type one of the below into the box marked Type :

    (###) ### ####
    ###-###-####


    HTH

    DominicB
    Please familiarise yourself with the rules before posting. You can find them here.

  3. #3
    Registered User
    Join Date
    01-14-2008
    Posts
    18

    Post

    that gives me the same issue - it looks correct, but the value is still XXXXXXXXXX.

  4. #4
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Smile

    Hi jreimer

    Quote Originally Posted by jreimer
    it looks correct
    If it looks correct then what's the problem? Can you elaborate?

    DominicB

  5. #5
    Registered User
    Join Date
    01-14-2008
    Posts
    18
    the value of the cell is still XXXXXXXXXX not (XXX) XXX-XXXX - the format is just (XXX) XXX-XXXX - so it looks all nice and pretty, but the value of the cells is not the same.

    In the cell - it looks like (XXX) XXX-XXXX, but if you click on the cell, in the bar to edit its contents - its XXXXXXXXXX (incorrect).

  6. #6
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Smile

    Hi jreimer

    OK. Highlight the range you want to address and then run this macro :

    Sub test()
    For Each UsrRnge In Selection
    UsrRnge.Value = Application.WorksheetFunction.Text(UsrRnge.Value, "###-###-####")
    Next UsrRnge
    End Sub
    Note, you can change the ###-###-#### to (###) ### #### to suit whichever format you prefer.


    HTH

    DominicB

+ 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