Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
formula for changing CAPS to small letters | Excel Worksheet Functions | |||
Sorting a Worksheet using Capital letters | Excel Worksheet Functions | |||
Counting the number of letters in a cell | Excel Discussion (Misc queries) | |||
How do I sort letters before numbers in Excel? | Excel Discussion (Misc queries) | |||
Small font on row & column numbers - wierd | Excel Discussion (Misc queries) |