Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Karen
 
Posts: n/a
Default How do I change uppercase to proper case in entire worksheet?

I have an existing worksheet with over 50,000 rows and 15 columns. Several
columns have information in all uppercase. I need to convert these words
into proper case. The information given in Excel Help only gives information
about changing individual cells. Does anyone have any suggestions?
  #2   Report Post  
bj
 
Posts: n/a
Default How do I change uppercase to proper case in entire worksheet?

I would suggest using a helper column

if one of the columns with all capitals were column C
in a helper column row 1 enter
=proper(c1)
copy down to the end of your data.
copy the helper column and paste special values over your column C
do this for each of the columns with all caps.
"Karen" wrote:

I have an existing worksheet with over 50,000 rows and 15 columns. Several
columns have information in all uppercase. I need to convert these words
into proper case. The information given in Excel Help only gives information
about changing individual cells. Does anyone have any suggestions?

  #3   Report Post  
JE McGimpsey
 
Posts: n/a
Default How do I change uppercase to proper case in entire worksheet?

Check out

http://www.mvps.org/dmcritchie/excel/proper.htm#proper

In article ,
"Karen" wrote:

I have an existing worksheet with over 50,000 rows and 15 columns. Several
columns have information in all uppercase. I need to convert these words
into proper case. The information given in Excel Help only gives information
about changing individual cells. Does anyone have any suggestions?

  #4   Report Post  
Paul D. Simon
 
Posts: n/a
Default How do I change uppercase to proper case in entire worksheet?

If you want to manually select the cells to change, then you can run
this macro on the selected cells:

For Each c In Selection.Cells
c.Value = StrConv(c.Value, vbProperCase)
Next c

If you want to automatically have the entire database changed then,
with your cell pointer anywhere within the database, use this instead:

Selection.CurrentRegion.Select
For Each c In Selection.Cells
c.Value = StrConv(c.Value, vbProperCase)
Next c

  #5   Report Post  
Paul D. Simon
 
Posts: n/a
Default How do I change uppercase to proper case in entire worksheet?

Actually, you can simplify that 2nd macro I gave you as follows:

For Each c In Selection.CurrentRegion.Cells
c.Value = StrConv(c.Value, vbProperCase)
Next c



  #6   Report Post  
Karen
 
Posts: n/a
Default How do I change uppercase to proper case in entire worksheet?

I appreciate all the helpful information, but I hate to say I am an Excel
novice and unfamiliar with simple things such as "helper column" and "macro".
What I need is a very simple step by step direction in how to complete this
task. Sorry I am such a klutz, but thanks ahead of time for your help.

"Karen" wrote:

I have an existing worksheet with over 50,000 rows and 15 columns. Several
columns have information in all uppercase. I need to convert these words
into proper case. The information given in Excel Help only gives information
about changing individual cells. Does anyone have any suggestions?

  #7   Report Post  
Paul D. Simon
 
Posts: n/a
Default How do I change uppercase to proper case in entire worksheet?

For anyone who may have read my responses above, David Ritchie was kind
enough to point out to me a very dangerous and potentially disastrous
result of my solutions in that my code would inadvertantly (and
unknowingly to the user) change formulas to values.

David's web site shows the proper code for Upper Case, Lower Case and
Proper case. As noted by JE McGimpsey above, go to
http://www.mvps.org/dmcritchie/excel/proper.htm#proper

To Karen - in Excel, a macro is the implementation of VBA code which
one creates in the VB Editor, usually within a Module (but also within
Sheet or ThisWorkbook). Giving you proper instructions on how to do
that here would be quite lengthy. Perhaps doing a search in the Excel
news group or getting a beginner's book (such as "VBA for Dummies")
might be helpful.

  #8   Report Post  
Paul D. Simon
 
Posts: n/a
Default How do I change uppercase to proper case in entire worksheet?

Karen,

I just found an excellent introduction to macros on David Ritchie's web
site that I believe will be very helpful to you. Go to
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
"1235" appears as "One thousand two hundred thirty five" H. Kan Excel Discussion (Misc queries) 11 December 8th 06 07:56 PM
CHANGE WHOLE EXCEL worksheet TO UPPERCASE LETTERS? mineralgirl Excel Discussion (Misc queries) 4 September 3rd 05 01:29 AM
Is there a formula to spell out a number in excel? Sha-nay-nay Excel Worksheet Functions 2 December 18th 04 09:25 PM
Spellnumber Norman Jones Excel Worksheet Functions 6 December 13th 04 07:21 AM
Identifying the Active Fill Color Steve Conary Excel Discussion (Misc queries) 3 December 9th 04 04:45 AM


All times are GMT +1. The time now is 03:37 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"