+ Reply to Thread
Results 1 to 4 of 4

Convert text to upper case

Hybrid View

cooper72 Convert text to upper case 07-18-2014, 08:53 AM
zbor Re: Convert text to upper case 07-18-2014, 08:54 AM
zbor Re: Convert text to upper case 07-18-2014, 08:55 AM
Special-K Re: Convert text to upper case 07-18-2014, 08:59 AM
  1. #1
    Registered User
    Join Date
    05-07-2014
    Location
    swansea
    MS-Off Ver
    Excel 2007
    Posts
    24

    Convert text to upper case

    Is there a way of selecting text and converting it all from lower to upper case?

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,033

    Re: Convert text to upper case

    Try
    Formula: copy to clipboard
    =UPPER(A1)
    Never use Merged Cells in Excel

  3. #3
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,033

    Re: Convert text to upper case

    If you want to convert selected cells you must use VBA:

    Right click on sheet name -> View code

    and paste:

    Public Sub ConvertUpper()
    Dim rngArea As Range
    For Each rngArea In Selection 
        With rngArea
            .Value = Evaluate("IF(ISTEXT(" & .Address & "),UPPER(" & .Address & "),REPT(" & .Address & ",1))")
        End With
    Next rngArea
    End Sub
    Then select any range and run this macro.

  4. #4
    Forum Expert
    Join Date
    03-23-2004
    Location
    London, England
    MS-Off Ver
    Excel 2019
    Posts
    7,077

    Re: Convert text to upper case

    VBA solution here, converts text once enter is pressed

    http://excel.tips.net/T002568_Forcin...Uppercase.html
    Regards
    Special-K

    Ensure you describe your problem clearly, I have little time available to solve these problems and do not appreciate numerous changes to them.

+ 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. Replies: 7
    Last Post: 04-18-2014, 04:11 PM
  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] Convert Text to Upper Case?
    By NickPDC in forum Excel General
    Replies: 4
    Last Post: 02-02-2011, 12:11 PM
  4. Replies: 1
    Last Post: 08-06-2006, 04:10 AM
  5. Replies: 1
    Last Post: 03-09-2005, 05: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