+ Reply to Thread
Results 1 to 3 of 3

Make Upper Case in cells become lower case

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    11-13-2012
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    279

    Make Upper Case in cells become lower case

    Make Upper Case in cells become lower case - does anyone know how to do this? I mean as a permanent change not a formula linking sheets. Thanks

  2. #2
    Forum Expert
    Join Date
    04-22-2013
    Location
    .
    MS-Off Ver
    .
    Posts
    4,418

    Re: Make Upper Case in cells become lower case

    You could maybe use a macro along the lines of:

    Sub MACRO_1()
    Dim cl
    For Each cl In ActiveSheet.Cells.SpecialCells(xlCellTypeConstants)
        cl.Value = LCase(cl.Value)
    Next
    End Sub
    Press alt+F11 to enter the vba editor, insert a new module (insert->module) and then copy that code in and then run (run menu or F5).

    It will work on the activesheet and only work on constants (not formulas)

  3. #3
    Forum Contributor
    Join Date
    11-13-2012
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    279

    Re: Make Upper Case in cells become lower case

    beautiful thanks

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Delete duplicates with lower case and upper case taken into account?
    By Tinwelende in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 06-17-2013, 11:35 AM
  2. [SOLVED] Convert 1st letter of word to Upper Case and rest to lower case
    By rizmomin in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 05-23-2013, 11:44 AM
  3. [SOLVED] Change the text from lower case to upper case in an Excel work boo
    By dave01968 in forum Excel General
    Replies: 2
    Last Post: 12-09-2005, 05:15 AM
  4. Replies: 14
    Last Post: 08-25-2005, 10:05 PM
  5. How do I change a column in Excel from upper case to lower case?
    By Debbie Kennedy in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 05-02-2005, 02:06 PM

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