How can I capatalize text in a column? in Excel General Questions  
 |  Edit my Profile  |  Help
 
     
  
 
 
 
dgysr 9/8/2005 6:16 AM PST
  Question
  I would like to select a column to incorporate only upper case letters. How
do I do this?
 
  Was this post helpful to you?  
 
 
  Reply | Print post   TopTop  
 
 
 
 
Mike 9/8/2005 7:33 AM PST
   
  I would dump the column into Word then do Format - Change Case - UPPERCASE
then dump it back into Excel. I do not see this feature in Excel.

"dgysr" wrote:

> I would like to select a column to incorporate only upper case letters. How
> do I do this?
 
  Was this post helpful to you?  
 
 
  Reply | Print post   TopTop  
 
 
 
 
pawprintzz 1/25/2008 9:29 AM PST
   
  Dear Mike, We are celebrating here in my office! Thanx for such an easy and
quick fix. I acutally have a headache from trying to work it in Excel - no
go! Bring it to Word, reformat it easily and bring it back to Excel. Thank
you from 3 of us!!

"Mike" wrote:

> I would dump the column into Word then do Format - Change Case - UPPERCASE
> then dump it back into Excel. I do not see this feature in Excel.
>
> "dgysr" wrote:
>
> > I would like to select a column to incorporate only upper case letters. How
> > do I do this?
 
  Was this post helpful to you?  
 
 
  Reply | Print post   TopTop  
 
 
 
 
Gord Dibben 1/25/2008 10:28 AM PST
   
  paw

There are a couple of ways to change a column to UPPER case without using Word
as an intermediary.

1. In a helper column enter =UPPER(cellref)

Copy that down as far as you wish.

2. Use a macro to make the change in place.

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 Fri, 25 Jan 2008 09:30:02 -0800, pawprintzz
<pawprintzz@discussions.microsoft.com> wrote:

>Dear Mike, We are celebrating here in my office! Thanx for such an easy and
>quick fix. I acutally have a headache from trying to work it in Excel - no
>go! Bring it to Word, reformat it easily and bring it back to Excel. Thank
>you from 3 of us!!
>
>"Mike" wrote:
>
>> I would dump the column into Word then do Format - Change Case - UPPERCASE
>> then dump it back into Excel. I do not see this feature in Excel.
>>
>> "dgysr" wrote:
>>
>> > I would like to select a column to incorporate only upper case letters. How
>> > do I do this?

 
  Was this post helpful to you?  
 
 
  Reply | Print post   TopTop  
 
 
 
 
paige 9/8/2005 7:59 AM PST
  Answer
  will you get your desired results if you use the =UPPER() formula in another
column?

"dgysr" wrote:

> I would like to select a column to incorporate only upper case letters. How
> do I do this?
 
  Was this post helpful to you?  
 
 
  Reply | Print post   TopTop  
 
 
 
 
PlayingToAudienceOfOne 5/29/2007 10:09 PM PST
   
  Copy the following macro:

Sub Change_Case()
Dim ocell As Range
Dim Ans As String
Ans = Application.InputBox("Type in Letter" & vbCr & _
"(L)owercase, (U)ppercase, (S)entence, (T)itles ")
If Ans = "" Then Exit Sub
For Each ocell In Selection.SpecialCells(xlCellTypeConstants, 2)
Select Case UCase(Ans)
Case "L": ocell = LCase(ocell.Text)
Case "U": ocell = UCase(ocell.Text)
Case "S": ocell = UCase(Left(ocell.Text, 1)) & _
LCase(Right(ocell.Text, Len(ocell.Text) - 1))
Case "T": ocell = Application.WorksheetFunction.Proper(ocell.Text)
End Select
Next

End Sub


"dgysr" wrote:

> I would like to select a column to incorporate only upper case letters. How
> do I do this?
 
  Was this post helpful to you?  
 
 
  Reply | Print post   TopTop  
 
 
 
 
LT 1/15/2009 3:24 PM PST
   
 

"dgysr" wrote:

> I would like to select a column to incorporate only upper case letters. How
> do I do this?
 
  Was this post helpful to you?  
 
 
  Reply | Print post   TopTop  
 
 
 
 
John 1/15/2009 4:07 PM PST
   
  HI
Try one of these : =UPPER(G1)will do this =TO ALWAYS ROUND UP TO THE NEXT
Or this one =PROPER(G1) will do this = To Always Round Up To The Next X.95,
Try:
HTH
John
"LT" <LT@discussions.microsoft.com> wrote in message
news:54E1EFDE-E9A5-4E3D-B054-A1A2C12F3C22@microsoft.com...
>
>
> "dgysr" wrote:
>
>> I would like to select a column to incorporate only upper case letters.
>> How
>> do I do this?

 
  Was this post helpful to you?  
 
 
  Reply | Print post   TopTop  
 
 
 
 
Pete_UK 1/15/2009 5:05 PM PST
   
  Or for an initial capital:

=UPPER(LEFT(A1))&LOWER(RIGHT(A1,LEN(A1)-1))

Hope this helps.

Pete

On Jan 16, 12:02 am, "John" <jo...@newlook.com> wrote:
> HI
> Try one of these : =UPPER(G1)will do this =TO ALWAYS ROUND UP TO THE NEXT
> Or this one =PROPER(G1)  will do this = To Always Round Up To The Next X.95,
> Try:
> HTH
> John"LT" <L...@discussions.microsoft.com> wrote in message
>
> news:54E1EFDE-E9A5-4E3D-B054-A1A2C12F3C22@microsoft.com...
>
>
>
>
>
> > "dgysr" wrote:
>
> >> I would like to select a column to incorporate only upper case letters..
> >> How
> >> do I do this?- Hide quoted text -
>
> - Show quoted text -

 
  Was this post helpful to you?  
 
 
  Reply | Print post   TopTop  
 
 
  Return to Microsoft Communities  Notify me of replies