Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default CPAS letters to small Letters

Hi,
This is Harishanker.
I have one Doubt in Excel..Pls clarify me as early as possible...How to
change the CAPS letters to small letters ?Is there any Keyboard short cut key
is there?I f there in no Short key ,then how to change ?Give me a detailed
Procedure for that.If there is any chance,Pls give me Examples how to
change?Thank you all ....

Thanks & Regards,

Harishanker.Ch
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default CPAS letters to small Letters

Sub ChangeCAPS()
Dim cell as Range
For each cell In Selection
If Not cell.HasFormula Then
cell.Value = LCase(cell.Value)
End If
Next cell
End Sub

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Harishanker.Ch" wrote in message
...
Hi,
This is Harishanker.
I have one Doubt in Excel..Pls clarify me as early as possible...How to
change the CAPS letters to small letters ?Is there any Keyboard short cut

key
is there?I f there in no Short key ,then how to change ?Give me a detailed
Procedure for that.If there is any chance,Pls give me Examples how to
change?Thank you all ....

Thanks & Regards,

Harishanker.Ch



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,327
Default CPAS letters to small Letters

Hi Harishanker

Excel doesn't do that. You need a small macro. Select the cells to be
converted and run this:

Sub Lower()
Dim Cel As Range
On Error Resume Next
For Each Cel In Intersect(Selection, ActiveSheet.UsedRange)
Cel.Formula = LCase$(Cel.Formula)
Next
End Sub

HTH. Best wishes Harald

"Harishanker.Ch" skrev i melding
...
Hi,
This is Harishanker.
I have one Doubt in Excel..Pls clarify me as early as possible...How to
change the CAPS letters to small letters ?Is there any Keyboard short cut

key
is there?I f there in no Short key ,then how to change ?Give me a detailed
Procedure for that.If there is any chance,Pls give me Examples how to
change?Thank you all ....

Thanks & Regards,

Harishanker.Ch



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default CPAS letters to small Letters

In addition to the macros provided by Bob and Harald, there is a worksheet
function.

=LOWER(cellref)


Gord Dibben MS Excel MVP

On Wed, 2 Aug 2006 00:07:02 -0700, Harishanker.Ch
wrote:

Hi,
This is Harishanker.
I have one Doubt in Excel..Pls clarify me as early as possible...How to
change the CAPS letters to small letters ?Is there any Keyboard short cut key
is there?I f there in no Short key ,then how to change ?Give me a detailed
Procedure for that.If there is any chance,Pls give me Examples how to
change?Thank you all ....

Thanks & Regards,

Harishanker.Ch


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
formula for changing CAPS to small letters Stilla Excel Worksheet Functions 2 June 26th 06 07:07 PM
Sorting a Worksheet using Capital letters This Guy Excel Worksheet Functions 0 April 25th 06 04:56 AM
Counting the number of letters in a cell beefycj5 Excel Discussion (Misc queries) 2 June 1st 05 08:28 PM
How do I sort letters before numbers in Excel? RiverGirl Excel Discussion (Misc queries) 4 May 27th 05 04:09 PM
Small font on row & column numbers - wierd Mike R. Excel Discussion (Misc queries) 1 December 4th 04 12:32 PM


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