+ Reply to Thread
Results 1 to 6 of 6

How to Uncapitalize large data field

  1. #1
    Registered User
    Join Date
    02-09-2007
    Posts
    2

    Angry How to Uncapitalize large data field

    I was given a large amount of data that was mostly entered with cap locks on so now it is all capitalized. How do I go about changing it back to standard formating? I tried the trick from word of Shift+f3 but it did not work. there must be an easy way but i can not find it.

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Hi,

    With a helper column. Say data in Col A enter this in B1

    =Proper(A1)

    Drag down then paste special values to get rid of the formula's

    Or using VBA...see link

    http://www.ozgrid.com/VBA/change-case-text.htm

    HTH

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Forum Expert
    Join Date
    12-29-2004
    Location
    Michigan, USA
    MS-Off Ver
    2013
    Posts
    2,208
    There is no quick and dirty way to change all upper case to lower case. You can do this one of two ways.

    1. With a formula for each cell:
    Please Login or Register  to view this content.
    Copy the formula down, then copy all cells with the formula then select Edit > Paste Special > values. If you have a very large range that is not contiguous, this might take a while.

    2. With VBA code:
    Please Login or Register  to view this content.
    This will automatically convert all cells in the used range to lower case.

    HTH

    Jason

  4. #4
    Forum Contributor
    Join Date
    08-14-2006
    Location
    USA
    MS-Off Ver
    2019
    Posts
    686
    in Excel you have to add a column which returns the original data in lower or title case

    when the data is in A1

    to get lower case in B1 put =LOWER(A1)
    to get Title Case in B1 put =PROPER(A1)

    if you have multiple columns, or you want Sentence Case
    you can export it into a table in Word, change the case and bring it back into Excel.

  5. #5
    Registered User
    Join Date
    02-09-2007
    Posts
    2

    Thank You!!

    It worked perfectly (with a little tweaking of a few entries but that saved me a ton of work. Thanks for your help!!

  6. #6
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Glad you got a solution

    VBA Noob

+ 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