Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default change font from all capitals?

I have a spreadsheet from someone and it's all in CAPS. i want to change all
the font to lower case. Is there a way.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default change font from all capitals?

See help on LOWER Function.

Or maybe PROPER function.

Using functions you will need helper cells.

If you want a macro to change all in place use this one.

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 Mon, 26 Apr 2010 14:48:01 -0700, jumbiegirl
wrote:

I have a spreadsheet from someone and it's all in CAPS. i want to change all
the font to lower case. Is there a way.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,939
Default change font from all capitals?

Uset the formula
=Lower(A1)

--
HTH...

Jim Thomlinson


"jumbiegirl" wrote:

I have a spreadsheet from someone and it's all in CAPS. i want to change all
the font to lower case. Is there a way.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 464
Default change font from all capitals?

Sub ChangeToLowerCae()
Dim lCap As Long


For lCap = 65 To 90
ActiveSheet.UsedRange.Replace Chr(lCap), LCase(lCap)
Next lCap
End Sub



--
Regards
Dave Hawley
www.ozgrid.com
"jumbiegirl" wrote in message
...
I have a spreadsheet from someone and it's all in CAPS. i want to change
all
the font to lower case. Is there a way.


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
Can you change current small text in a cell to CAPITALS? Chris K[_2_] Excel Discussion (Misc queries) 3 December 18th 09 01:08 AM
how do i change the words from lower case to uppercase/capitals dm Excel Discussion (Misc queries) 3 July 17th 09 09:34 AM
Change all text one font size up with various font sizes used. omchrystal New Users to Excel 2 March 6th 07 09:01 PM
change display font to actual selected font Flannigan Excel Discussion (Misc queries) 1 August 30th 05 01:46 PM
Change Capitals to Sentence Case do Excel Discussion (Misc queries) 2 March 29th 05 02:31 AM


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