+ Reply to Thread
Results 1 to 6 of 6

Excel Formatting: Cleaning up information so it looks consistent

Hybrid View

  1. #1
    Forum Contributor Russell Dawson's Avatar
    Join Date
    03-01-2012
    Location
    Yorkshire, England
    MS-Off Ver
    2007
    Posts
    608

    Re: Excel Formatting: Cleaning up information so it looks consistent

    Much better
    If I helped, please don't forget to add to my reputation. (click on the star below the post)

    If the problem is solved, please: Select Thread Tools (on top of your 1st post) -> Mark this thread as Solved.

    Failure is not falling down but refusing to get up.

  2. #2
    Registered User
    Join Date
    10-06-2011
    Location
    New York, New York
    MS-Off Ver
    Excel 2003
    Posts
    30

    Re: Excel Formatting: Cleaning up information so it looks consistent

    Thank you very much guys that was great!

  3. #3
    Forum Contributor
    Join Date
    01-24-2011
    Location
    Sheppey
    MS-Off Ver
    Excel 2010
    Posts
    239

    Re: Excel Formatting: Cleaning up information so it looks consistent

    You could use this code in a module to save having an extra column.
    Sub macro1()
    
    Range("A65536").End(xlUp).Select
    ii = ActiveCell.Row
    
            Do Until ActiveCell.Row = 1
    Range("A" & ii).Select
    aaa = ActiveCell.Value
    bbb = Application.WorksheetFunction.Proper(aaa)
    ccc = Application.WorksheetFunction.Trim(bbb)
    ActiveCell.Value = ccc
    ii = ii - 1
            Loop
    
    End Sub

+ 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