If you want a macro to change all in place use this one.
Sub Lower()
Dim Cell As Range
Application.ScreenUpdating = False
For Each Cell In Selection
Cell.Formula = LCase(Cell.Formula)
Next
Application.ScreenUpdating = True
End Sub
For lCap = 65 To 90
ActiveSheet.UsedRange.Replace Chr(lCap), LCase(lCap)
Next lCap
End Sub
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.