How to convert capital letters to small letters in MS excel?
-
-
Answer:
Though you could use the LOWER function in a formula, that does not do much good when you wish to convert the text in a large number of cells on a spreadsheet to lowercase. A better approach is to create a Macro that you can easily use from the TOOLS ==> MACROS menu options or by assigning a custom toolbar icon to the Macro. Here is that Macro: Public Sub LowerCase() Dim rng As Range Dim cell As Range Set rng = ActiveWindow.RangeSelection For Each cell In rng cell.Value = StrConv(cell.Value, vbLowerCase) Next cell End Sub The above will work for only those cells that are selected at the time you run the Macro. If you want the Macro to select all cells that have data around the current active cell, then replace the above SET statement with the following: Set rng = ActiveCell.CurrentRegion .
debajit d at Yahoo! Answers Visit the source
Other answers
That's right. capital -> small is "lower" small -> capital is "upper"
I think that is not possible in excel but in word it is possible write any word and after that select that word and press ctrl+shift+A key. i think it work or help you some.
Soman
I would use: =PROPER(A1) or whatever your cell that has capital letters in it. The Proper function will keep the first letter capitalized.
4W350M3-0
Use the lower() function A1: TITLE B1: =lower(A1) The value that would show in B1 is title For immediate help go to http://www.crossloop.com/PCS_Help
PCS_Help
use "change case" icon from Tool bar
goodguy
Related Q & A:
- How to insert capital letters to Mysql?Best solution by stackoverflow.com
- How to convert my SQL query to MS Access query?Best solution by Stack Overflow
- How to convert Json to CSV or Excel?Best solution by Stack Overflow
- How do you make letters upside down in your display name on myspace?Best solution by Yahoo! Answers
- How do tactile letters quicken learning letters?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.