Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I looked on this forum yesterday to find a solution to change upper to
lowercase in a spreadsheet. I found this code in a thread which needs to be changed in order to produce lowercase results at the moment it produces UPPERCASE. Option Explicit Sub ConvertCase() Dim Rng As Range For Each Rng In Selection.Cells If Rng.HasFormula = False Then 'Use this line for UpperCase text; change UCase to LCase for LowerCase text. Rng.Value = UCase(Rng.Value) End If Next Rng End Sub Could someone please explain what part of the code needs changing to produce lowercase results. Thank you in advance Paul |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Hi, Instead of fiddling with VBA, why don't you just do: =LOWER(A1) This'll change all the text to lowercase. You'll need to do it in a seperate column, but then just copy and paste it over. HTH, SamuelT -- SamuelT ------------------------------------------------------------------------ SamuelT's Profile: http://www.excelforum.com/member.php...o&userid=27501 View this thread: http://www.excelforum.com/showthread...hreadid=573001 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Paul, Change the "UCase(Rng.Value)" to "LCase(Rng.Value)" The line in the code above this tells you what to change Steve |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() There is an UPPER and LOWER function (=LOWER(A2)) If you use this and copy/paste special (values) I'm sure you could resolve. -- SAP PoD ------------------------------------------------------------------------ SAP PoD's Profile: http://www.excelforum.com/member.php...o&userid=37641 View this thread: http://www.excelforum.com/showthread...hreadid=573001 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you.
"SIR Knight" wrote: Paul, Change the "UCase(Rng.Value)" to "LCase(Rng.Value)" The line in the code above this tells you what to change Steve |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lowercase text changed by Ecel to Uppercase after import | Excel Discussion (Misc queries) | |||
How do I do a global change from uppercase to lowercase? | Excel Discussion (Misc queries) | |||
Changing font from lowercase to uppercase easily | Excel Discussion (Misc queries) | |||
Changing font from lowercase to uppercase easily | Excel Discussion (Misc queries) | |||
uppercase to lowercase | Excel Discussion (Misc queries) |