PC Review


Reply
Thread Tools Rate Thread

How to change mixed case to upper case in Excel for all cells

 
 
=?Utf-8?B?V29yZEFsb25lIE5ldHdvcms=?=
Guest
Posts: n/a
 
      14th Feb 2006
I need to change name and address from mixed case to uppercase in the cells
on my Excel spreadsheet - is there a way to do this without retyping
everything?
 
Reply With Quote
 
 
 
 
=?Utf-8?B?S2V2aW4gVmF1Z2hu?=
Guest
Posts: n/a
 
      14th Feb 2006
You could use a helper column and the formula =upper(a1) copied down.
If you wanted, you could then copy - paste special values back over the
originals and get rid of the helper column.
--
Kevin Vaughn


"WordAlone Network" wrote:

> I need to change name and address from mixed case to uppercase in the cells
> on my Excel spreadsheet - is there a way to do this without retyping
> everything?

 
Reply With Quote
 
 
 
 
=?Utf-8?B?YnBlbHR6ZXI=?=
Guest
Posts: n/a
 
      14th Feb 2006
In a helper column, use the upper function. Ex: insert column B, then in B1
enter the function =upper(a1). Copy that formula down through the rest of
column B. Now copy column B, select column A and Edit > Paste Special,
select Values and click OK. Then delete column B.
Please save before making significant changes! And, personally, I'd ask if
you really, really, really, want to convert to upper case. It's always easy
to convert to upper case as necessary; not so easy to go back (and mixed
case is certainly easier to read).
--Bruce

"WordAlone Network" wrote:

> I need to change name and address from mixed case to uppercase in the cells
> on my Excel spreadsheet - is there a way to do this without retyping
> everything?

 
Reply With Quote
 
=?Utf-8?B?V29yZEFsb25lIE5ldHdvcms=?=
Guest
Posts: n/a
 
      14th Feb 2006
Thanks - that will work just fine!
Anne

"Kevin Vaughn" wrote:

> You could use a helper column and the formula =upper(a1) copied down.
> If you wanted, you could then copy - paste special values back over the
> originals and get rid of the helper column.
> --
> Kevin Vaughn
>
>
> "WordAlone Network" wrote:
>
> > I need to change name and address from mixed case to uppercase in the cells
> > on my Excel spreadsheet - is there a way to do this without retyping
> > everything?

 
Reply With Quote
 
=?Utf-8?B?Ymlnd2hlZWw=?=
Guest
Posts: n/a
 
      14th Feb 2006
Download a CaseChange add-in from http://www.xcelfiles.com/Downloads_01.html

"WordAlone Network" wrote:

> I need to change name and address from mixed case to uppercase in the cells
> on my Excel spreadsheet - is there a way to do this without retyping
> everything?

 
Reply With Quote
 
=?Utf-8?B?S2V2aW4gVmF1Z2hu?=
Guest
Posts: n/a
 
      15th Feb 2006
You're welcome.
--
Kevin Vaughn


"WordAlone Network" wrote:

> Thanks - that will work just fine!
> Anne
>
> "Kevin Vaughn" wrote:
>
> > You could use a helper column and the formula =upper(a1) copied down.
> > If you wanted, you could then copy - paste special values back over the
> > originals and get rid of the helper column.
> > --
> > Kevin Vaughn
> >
> >
> > "WordAlone Network" wrote:
> >
> > > I need to change name and address from mixed case to uppercase in the cells
> > > on my Excel spreadsheet - is there a way to do this without retyping
> > > everything?

 
Reply With Quote
 
=?Utf-8?B?S2V2aW4gVmF1Z2hu?=
Guest
Posts: n/a
 
      15th Feb 2006
This is true. I frequently use the proper function myself.
--
Kevin Vaughn


"bpeltzer" wrote:

> In a helper column, use the upper function. Ex: insert column B, then in B1
> enter the function =upper(a1). Copy that formula down through the rest of
> column B. Now copy column B, select column A and Edit > Paste Special,
> select Values and click OK. Then delete column B.
> Please save before making significant changes! And, personally, I'd ask if
> you really, really, really, want to convert to upper case. It's always easy
> to convert to upper case as necessary; not so easy to go back (and mixed
> case is certainly easier to read).
> --Bruce
>
> "WordAlone Network" wrote:
>
> > I need to change name and address from mixed case to uppercase in the cells
> > on my Excel spreadsheet - is there a way to do this without retyping
> > everything?

 
Reply With Quote
 
=?Utf-8?B?UGxheWluZ1RvQXVkaWVuY2VPZk9uZQ==?=
Guest
Posts: n/a
 
      30th May 2007
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


"WordAlone Network" wrote:

> I need to change name and address from mixed case to uppercase in the cells
> on my Excel spreadsheet - is there a way to do this without retyping
> everything?

 
Reply With Quote
 
New Member
Join Date: Jul 2012
Posts: 8
 
      26th Jul 2012
The best Excel Change Case Add-In can be found at the following link

http://www.nucleation.in/2012/07/change-case-excel-add-in.html


In this add in, change case functionality is incorporated to the context menu, which makes it very easy to use.

This Add-In has the following features
a. Change case of selected cells to ‘UPPER CASE’
b. Change case of selected cells to ‘lower case’
c. Change case of selected cells to ‘Proper Case’
d. Change case of selected cells to ‘Sentence case’
e. Change case of selected cells to ‘tOgGlE cAsE’
f. Customizable shortcut keys to perform change case actions
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Changing file in all upper case to upper and lower case =?Utf-8?B?U2FnaXQ=?= Microsoft Excel Misc 15 30th May 2007 06:08 AM
Change from mixed caps and upper lower to all upper lower case =?Utf-8?B?RmlzaCcncyBNZXJtYWlk?= Microsoft Excel Worksheet Functions 3 13th Oct 2006 02:15 PM
convert upper case text to lower case with the first letter upper =?Utf-8?B?Skg=?= Microsoft Access Macros 1 20th Aug 2006 09:07 PM
All UPPER CASE to Upper & Lower Case =?Utf-8?B?ajk=?= Microsoft Excel Worksheet Functions 3 8th May 2004 09:04 PM
Changing data from Upper Case to Mixed Case ray Microsoft Access Security 0 8th Jul 2003 09:58 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:28 AM.