+ Reply to Thread
Results 1 to 4 of 4

Excel 2007 : Change Address Database from upper case to proper case

Hybrid View

  1. #1
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,375

    Re: Change Address Database from upper case to proper case

    Hi,

    if you don't want to write a macro for this, you could do the following:

    on a new sheet, select A2 and enter

    =PROPER(Sheet1!A2)

    Copy right to column E

    Then copy the formulas down to row 373.

    Now select A2:E373, copy, go to Sheet1, select A2 and click Edit - Paste Special - Values. Now all your content should be in proper case. You can now delete the sheet with the formulas.


    hth

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Change Address Database from upper case to proper case

    FWIW one possible VBA approach would be:

    Public Sub DoItProper()
    With Range("A2:E373")
        .Value = Evaluate("IF(ISTEXT(" & .Address & "),PROPER(" & .Address & "),REPT(" & .Address & ",1))")
    End With
    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