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 |
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) |