Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 67
Default Upper to Lowercase in Excel

Hi,

I have a spreadsheet with first and last name (column A), address 1 (column
B), address 2 (column C), City (column D), State (column E), Zip (column F).
All text is in uppercase. Is there a way to update all columns to Inital
Caps (upper/lower case)
--
Beth
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Upper to Lowercase in Excel

Hi,

you might want to try to PROPER() function for every cell, it will do
just what you need. HTH,

Juan Marin
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 67
Default Upper to Lowercase in Excel

Great, I see that function. Can I enter this function into a spreadsheet
that is already populated, or do I need to start new? Thanks!
--
Beth


"JuanMarin" wrote:

Hi,

you might want to try to PROPER() function for every cell, it will do
just what you need. HTH,

Juan Marin

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Upper to Lowercase in Excel

Beth,

=proper(a1) in b1 and dragged down would create a new column with your names
converted to proper case. This does what you want but you then have 2 columns
and can't delete the first because the formula refers to it so you can do
this.

You can copy the newly created column and then
select the original column
Edit|Paste special
paste values
delete the column with the formula in

Mike

"Beth" wrote:

Great, I see that function. Can I enter this function into a spreadsheet
that is already populated, or do I need to start new? Thanks!
--
Beth


"JuanMarin" wrote:

Hi,

you might want to try to PROPER() function for every cell, it will do
just what you need. HTH,

Juan Marin

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 67
Default Upper to Lowercase in Excel

Got it - thanks! Really appreciate the help!!!!!
--
Beth


"Mike H" wrote:

Beth,

=proper(a1) in b1 and dragged down would create a new column with your names
converted to proper case. This does what you want but you then have 2 columns
and can't delete the first because the formula refers to it so you can do
this.

You can copy the newly created column and then
select the original column
Edit|Paste special
paste values
delete the column with the formula in

Mike

"Beth" wrote:

Great, I see that function. Can I enter this function into a spreadsheet
that is already populated, or do I need to start new? Thanks!
--
Beth


"JuanMarin" wrote:

Hi,

you might want to try to PROPER() function for every cell, it will do
just what you need. HTH,

Juan Marin



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Upper to Lowercase in Excel

Could you use a macro to change all at once without any formulas or helper
cells?

Sub Proper()
Dim Cell As Range
Application.ScreenUpdating = False
For Each Cell In Selection
Cell.Formula = Application.Proper(Cell.Formula)
Next
Application.ScreenUpdating = True
End Sub

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

Sub Lower()
Dim Cell As Range
Application.ScreenUpdating = False
For Each Cell In Selection
Cell.Formula = LCase(Cell.Formula)
Next
Application.ScreenUpdating = True
End Sub



Gord Dibben MS Excel MVP



On Tue, 15 Jul 2008 11:30:00 -0700, Beth wrote:

Got it - thanks! Really appreciate the help!!!!!


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Upper to Lowercase in Excel

Beth,

Have a look at PROPER in Excel help.

Mike

"Beth" wrote:

Hi,

I have a spreadsheet with first and last name (column A), address 1 (column
B), address 2 (column C), City (column D), State (column E), Zip (column F).
All text is in uppercase. Is there a way to update all columns to Inital
Caps (upper/lower case)
--
Beth

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Upper to Lowercase in Excel

Beth,

Try installing ASAP Utilities. it has many added functions for Excel,
including CASE change for text values. You can select a range and change to
UPPER, lower, Sentence or Title Case. No formulas needed.

See: http://www.asap-utilities.com/

It is FREE! Works with all versions through 2007. I love this tool.

P.S. I am just a user and have no connection to the author.

"Beth" wrote:

Hi,

I have a spreadsheet with first and last name (column A), address 1 (column
B), address 2 (column C), City (column D), State (column E), Zip (column F).
All text is in uppercase. Is there a way to update all columns to Inital
Caps (upper/lower case)
--
Beth

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
In excel , is there a way i can change UPPERCASE to lowercase? Maria Excel Discussion (Misc queries) 12 June 12th 09 08:19 AM
Changing upper case characters to upper/lower Richard Zignego Excel Discussion (Misc queries) 1 December 17th 07 10:09 PM
convert a range of lowercase text to upper text or vice versa jackdaw Excel Worksheet Functions 2 May 16th 05 09:31 PM
How do I convert all upper case excel sheet into upper and lower . DebDay Excel Discussion (Misc queries) 1 March 9th 05 08:31 PM
How to change location A1 cell from upper right to upper left? Doug@Peacock Excel Discussion (Misc queries) 1 February 8th 05 02:37 PM


All times are GMT +1. The time now is 06:05 PM.

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

About Us

"It's about Microsoft Excel"