There are spreadsheet functions; UPPER, LOWER, PROPER.
But, like any function, they reference an external cell.
So, if you want to "convert" ALL the cells in a sheet, you will have to do it from another sheet, OR find an area on the original sheet (less than half the sheet) to put your functions in.
The alternative is to run a simple VBA routine like this
Code:
For each c in ActiveSheet.UsedRange
c.Value = LCase(c.Value)
Next
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.