Make Upper Case in cells become lower case - does anyone know how to do this? I mean as a permanent change not a formula linking sheets. Thanks
Make Upper Case in cells become lower case - does anyone know how to do this? I mean as a permanent change not a formula linking sheets. Thanks
You could maybe use a macro along the lines of:
Press alt+F11 to enter the vba editor, insert a new module (insert->module) and then copy that code in and then run (run menu or F5).![]()
Sub MACRO_1() Dim cl For Each cl In ActiveSheet.Cells.SpecialCells(xlCellTypeConstants) cl.Value = LCase(cl.Value) Next End Sub
It will work on the activesheet and only work on constants (not formulas)
beautiful thanks
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks