Results 1 to 4 of 4

Thread: Excel 2010 changing number formats

  1. #1
    Join Date
    Jan 2013
    Posts
    2

    Excel 2010 changing number formats

    can anyone help me please ??

    i have a list of numbers in Column b which are say 1 but i want to change the number to read +001 how do i go about doing this, i have thousands tro change

    Thanks

  2. #2
    Join Date
    Dec 2007
    Posts
    2,291

    Re: Excel 2010 changing number formats

    I think that your Normal Style may be corrupted. So you can go to Styles in the Home Tab and right-ckick Normal. Specify modify and check the settings and make correction if necessary.

  3. #3
    Join Date
    Jan 2013
    Posts
    2

    Re: Excel 2010 changing number formats

    i ws looking for a way to changethe form of the numbers without changing every single one

  4. #4
    Join Date
    Dec 2007
    Posts
    1,736

    Re: Excel 2010 changing number formats

    I have found a VBA macro script that you can run to clean up the custom style list. You can try to create it in a macro, it is kind of slow, though it works:

    Code:
    Sub TrimStyles()
    Dim s As Variant
    Dim g As Style
    On Error Resume Next
    With ActiveWorkbook
    For Each g In .Styles
    If g.BuiltIn = False Then
    s = g.Value
    .Styles(s).Delete
    End If
    Next g
    On Error GoTo 0
    End With
    End Sub

Similar Threads

  1. Replies: 5
    Last Post: 11-07-2011, 10:38 AM
  2. Change mobile service provider without changing number
    By ^Saraniya^ in forum India BroadBand
    Replies: 5
    Last Post: 02-01-2011, 06:47 PM
  3. Replies: 5
    Last Post: 29-11-2010, 11:14 PM
  4. Want the same Number after changing location
    By Gyani23 in forum India BroadBand
    Replies: 2
    Last Post: 01-04-2009, 11:50 AM
  5. Replies: 5
    Last Post: 17-01-2008, 02:35 AM

Tags for this Thread

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
  •  
Page generated in 1,713,554,536.59278 seconds with 17 queries