+ Reply to Thread
Results 1 to 3 of 3

Changing font from lowercase to uppercase easily

  1. #1
    formhelp
    Guest

    Changing font from lowercase to uppercase easily

    In Word I know that we can change the font of an entire document from
    lowercase to uppercase without having to re-type the document...is that
    possible in Excel?

  2. #2
    Rachel
    Guest

    RE: Changing font from lowercase to uppercase easily

    Create a macro named Upper_Case any time you need to change case select the
    cells and run the macro.

    Insert the following code in the sub routine:

    Sub Upper_Case()
    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    Dim Cell as Range
    On Error Resume Next 'In case no cells in selection
    For Each Cell In Intersect(Selection, _
    Selection.SpecialCells(xlConstants, xlTextValues))
    Cell.Formula = UCase(Cell.Formula)
    Next
    Application.Calculation = xlCalculationAutomatic
    Application.ScreenUpdating = True
    End Sub


    "formhelp" wrote:

    > In Word I know that we can change the font of an entire document from
    > lowercase to uppercase without having to re-type the document...is that
    > possible in Excel?


  3. #3
    David McRitchie
    Guest

    Re: Changing font from lowercase to uppercase easily

    Specifically you would install the macro in your personal.xls so
    that it can be accessed from any workbook.
    http://www.mvps.org/dmcritchie/excel/getstarted.htm

    The subroutine is installed in a Standard Code Module, not a subroutine.

    One of the advantages of referencing a web page is all of the
    explanations that go with the code.
    http://www.mvps.org/dmcritchie/excel/proper.htm
    Another advantage is revisions are easily made to a webpage.

    This is an interesting thread -- I do not see the original message,
    except as include in Rachel's reply,
    nor does a thread with this subject appear in Google Groups, nor does the
    url based on the message-id
    http://groups.google.com/groups?thre...0microsoft.com
    ---
    HTH,
    David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
    My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
    Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

    "Rachel" <Rachel@discussions.microsoft.com> wrote...
    > Create a macro named Upper_Case any time you need to change case select the
    > cells and run the macro.
    >
    > Insert the following code in the sub routine:
    >
    > Sub Upper_Case()
    > Application.ScreenUpdating = False
    > Application.Calculation = xlCalculationManual
    > Dim Cell as Range
    > On Error Resume Next 'In case no cells in selection
    > For Each Cell In Intersect(Selection, _
    > Selection.SpecialCells(xlConstants, xlTextValues))
    > Cell.Formula = UCase(Cell.Formula)
    > Next
    > Application.Calculation = xlCalculationAutomatic
    > Application.ScreenUpdating = True
    > End Sub
    >
    >
    > "formhelp" wrote:
    >
    > > In Word I know that we can change the font of an entire document from
    > > lowercase to uppercase without having to re-type the document...is that
    > > possible in Excel?




+ 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