Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I would like to know how to change a range of cells from mixed- or lower-case
to all upper-case in Excel. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
in another column enter =upper(A1) I assume that A1 is the cell where you have the text, copy formula down "antonioejones612" wrote: I would like to know how to change a range of cells from mixed- or lower-case to all upper-case in Excel. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
By formula............see UPPER function in help
By macro.............. Sub Upper() Dim Cell As Range Application.ScreenUpdating = False For Each Cell In Selection Cell.Formula = UCase(Cell.Formula) Next Application.ScreenUpdating = True End Sub Gord Dibben MS Excel MVP On Thu, 1 Apr 2010 07:23:02 -0700, antonioejones612 wrote: I would like to know how to change a range of cells from mixed- or lower-case to all upper-case in Excel. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
In excel can you change words from all caps to initial caps? | Excel Discussion (Misc queries) | |||
Changing all caps to proper | Excel Discussion (Misc queries) | |||
How can I convert all Caps to first letter caps in Excel? | Excel Worksheet Functions | |||
excel sheet all caps and needs to be only the first letter caps.. | Excel Discussion (Misc queries) | |||
Changing text from all caps to first letter cap | Excel Discussion (Misc queries) |