• How to change to upper case in Excel 2003

    Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » How to change to upper case in Excel 2003

    Author
    Topic
    #462862

    Good evening! I have an Excel file with a mixture of names in lowercase and uppercase. How do I change them all to uppercase without using two columns? Is
    there a way to change a group of highlighted cells from lowercase to uppercase in Excel, as you can do in Word?

    Regards,

    Dea Friloux

    Viewing 2 reply threads
    Author
    Replies
    • #1179421

      You could run a macro:

      Code:
      Sub Change2Upper()
        Dim oCell As Range
        For Each oCell In Selection
      	oCell = UCase(oCell)
        Next oCell
      End Sub
    • #1179428

      Good evening! I have an Excel file with a mixture of names in lowercase and uppercase. How do I change them all to uppercase without using two columns? Is
      there a way to change a group of highlighted cells from lowercase to uppercase in Excel, as you can do in Word?

      Regards,

      Dea Friloux

      If it’s a one off exercise, I’d be tempted to copy and paste into Word, do the magic with Crtl+F3 and paste the upper case text back into the column.

      But I’m just lazy sometimes 🙂

    • #1179451

      Good evening! I have an Excel file with a mixture of names in lowercase and uppercase. How do I change them all to uppercase without using two columns?

      If this is a one off exercise and you are prepared to use two columns temporarily then (assuming that original is in column A) you could

        [*]Put =upper(A1) into the first available cell in your temporary column
        [*]Drag this new cell down to fill however many rows are in the original column
        [*]Select all the new cells
        [*]Edit > Copy
        [*]Select cell A1
        [*]Edit > Paste Special > Values
        [*]Clear all the cells in the temporary column
    Viewing 2 reply threads
    Reply To: How to change to upper case in Excel 2003

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: