#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Format to lowercase

Is there a way to format cells containing text in all caps so that they are
not in all caps?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 202
Default Format to lowercase

=LOWER(A1)

"Taylor" wrote:

Is there a way to format cells containing text in all caps so that they are
not in all caps?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Format to lowercase

Is there a way to do it without having to insert an additional column?

"Dennis" wrote:

=LOWER(A1)

"Taylor" wrote:

Is there a way to format cells containing text in all caps so that they are
not in all caps?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Format to lowercase

LOWER, PROPER ?
But not by formatting.
--
David Biddulph

"Taylor" wrote in message
...
Is there a way to format cells containing text in all caps so that they
are
not in all caps?



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 202
Default Format to lowercase

Copy the new column and then paste Special values only into your exsiting
column and then delete the additional column

"Taylor" wrote:

Is there a way to do it without having to insert an additional column?

"Dennis" wrote:

=LOWER(A1)

"Taylor" wrote:

Is there a way to format cells containing text in all caps so that they are
not in all caps?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Format to lowercase

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


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


Gord Dibben MS Excel MVP

On Thu, 10 Jul 2008 08:28:01 -0700, Taylor
wrote:

Is there a way to do it without having to insert an additional column?

"Dennis" wrote:

=LOWER(A1)

"Taylor" wrote:

Is there a way to format cells containing text in all caps so that they are
not in all caps?


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 348
Default Format to lowercase

Taylor wrote:
Is there a way to format cells containing text in all caps so that they are
not in all caps?

You could download an all lower-case font.
See http://www.fontcenter.com/categories...nly/index.html

Bill
  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,327
Default Format to lowercase

"Bill Sharpe" skrev i melding
...
Taylor wrote:
Is there a way to format cells containing text in all caps so that they
are not in all caps?

You could download an all lower-case font.
See http://www.fontcenter.com/categories...nly/index.html


What a concept, Bill. We all think it can't be done by formatting, but this
is it, way outside the box. Thanks!!!

Best wishes Harald


  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Format to lowercase

Fine as far as it goes, but remember that in such situations a
case-sensitive comparison with the lower case alternative would presumably
not succeed. You are presumably just seeing the upper case letters
*displayed* the same as lower case.
--
David Biddulph

"Harald Staff" wrote in message
...

What a concept, Bill. We all think it can't be done by formatting, but
this is it, way outside the box. Thanks!!!


"Bill Sharpe" skrev i melding
...
You could download an all lower-case font.
See http://www.fontcenter.com/categories...nly/index.html


Taylor wrote:
Is there a way to format cells containing text in all caps so that they
are not in all caps?



  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 348
Default Format to lowercase

David Biddulph wrote:
Fine as far as it goes, but remember that in such situations a
case-sensitive comparison with the lower case alternative would presumably
not succeed. You are presumably just seeing the upper case letters
*displayed* the same as lower case.
--
David Biddulph

True enough, but the OP only asked about displaying the information, not
making comparisons. My own approach would be to make sure that entries
are made using a mix of upper and lower case as needed, but that's not
what was asked.

Bill
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
Conditional format lowercase LoriM1 Excel Worksheet Functions 2 April 12th 06 01:44 PM
Multiple lowercase b's alchemist Excel Discussion (Misc queries) 2 September 27th 05 12:17 PM
uppercase to lowercase Missy Excel Worksheet Functions 1 February 3rd 05 09:10 PM
lowercase to uppercase Louise Excel Worksheet Functions 6 January 10th 05 09:41 PM
uppercase to lowercase Mammoth Excel Discussion (Misc queries) 3 November 28th 04 03:19 AM


All times are GMT +1. The time now is 09:00 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"