A antonioejones612 Apr 1, 2010 #1 I would like to know how to change a range of cells from mixed- or lower-case to all upper-case in Excel.
I would like to know how to change a range of cells from mixed- or lower-case to all upper-case in Excel.
E Eduardo Apr 1, 2010 #2 Hi, in another column enter =upper(A1) I assume that A1 is the cell where you have the text, copy formula down
Hi, in another column enter =upper(A1) I assume that A1 is the cell where you have the text, copy formula down
G Gord Dibben Apr 1, 2010 #3 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
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