+ Reply to Thread
Results 1 to 25 of 25

Is it possible to change and entire sheet to Upper case???

Hybrid View

  1. #1
    Forum Expert
    Join Date
    12-29-2004
    Location
    Michigan, USA
    MS-Off Ver
    2013
    Posts
    2,208
    If you would rather not use formulas, you could right-click on the sheet tab, select view code, and paste this code, and then run the macro:
    Sub allcaps()
        Dim rng As Range, cell As Range
        Set rng = ActiveSheet.UsedRange
        For Each cell In rng.Cells
            cell.Value = UCase(cell.Value)
        Next
    End Sub

  2. #2
    Registered User
    Join Date
    01-28-2007
    Posts
    2
    Thanks Bryan and Jason.

    Jason, that macro is great. Thats going to save us heaps of work.


    Thanks very much for your help. All the best for the year ahead.

    Timbo

  3. #3
    Forum Expert
    Join Date
    12-29-2004
    Location
    Michigan, USA
    MS-Off Ver
    2013
    Posts
    2,208
    Glad I could help, Timbo.

  4. #4
    Registered User
    Join Date
    08-07-2012
    Location
    Ocala, Florida
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Is it possible to change and entire sheet to Upper case???

    That is awesome! I have been trying for EVER to do this with different formulas...and it two seconds the code you posted took care of my whole sheet. Why haven't MicroSoft people figured out a way to simplify this for the user yet?? Ugh. Anyway..thanks so much for posting.

  5. #5
    Registered User
    Join Date
    01-15-2015
    Location
    milwaukee wi
    MS-Off Ver
    2010
    Posts
    1

    Re: Is it possible to change and entire sheet to Upper case???

    This worked great! Thanks!

  6. #6
    Registered User
    Join Date
    09-24-2021
    Location
    United States
    MS-Off Ver
    Microsoft 365 Apps for enterprise
    Posts
    7

    Re: Is it possible to change and entire sheet to Upper case???

    Thank you so much for this macro!! This made a WORLD of difference for a work project of mine.

  7. #7
    Registered User
    Join Date
    04-18-2023
    Location
    istanbul
    MS-Off Ver
    have no clue
    Posts
    1

    Re: Is it possible to change and entire sheet to Upper case???

    You. Are. A. Genius! Thank you!!!

  8. #8
    Registered User
    Join Date
    10-17-2023
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    1

    Re: Is it possible to change and entire sheet to Upper case???

    thanks a ton, this saved my time and did help me a lot and many thanks once again

  9. #9
    Registered User
    Join Date
    12-20-2023
    Location
    Bahrain
    MS-Off Ver
    M365
    Posts
    1

    Re: Is it possible to change and entire sheet to Upper case???

    Thanks Jason, your Macro saved me. I was looking for many days to convert the whole sheet in Caps but could not find any. Your macro has resolved my problem, thanks a lot.

+ 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