Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi rodchar,
Sub CHANGE_TO_LCASE() 'select range and run this to change to all CAPS Dim cel As Range For Each cel In Intersect(Selection, _ ActiveSheet.UsedRange) cel.Formula = LCase$(cel.Formula) Next End Sub Which is a variation of Paul B's response to kristel, who only yesterday needed to change an entire document to uppercase. I just changed UCase$ to LCase$. Ken Johnson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Another casing question | Excel Discussion (Misc queries) | |||
Converting All Caps to Proper casing | Excel Worksheet Functions |