There is no quick and dirty way to change all upper case to lower case. You can do this one of two ways.
1. With a formula for each cell:
Copy the formula down, then copy all cells with the formula then select Edit > Paste Special > values. If you have a very large range that is not contiguous, this might take a while.
2. With VBA code:
Sub Caps_to_Lower()
Dim cell As Range
For Each cell In ActiveSheet.UsedRange.Cells
If cell = "" Then
Else
cell = LCase(cell)
End If
Next
End Sub
This will automatically convert all cells in the used range to lower case.
HTH
Jason
Bookmarks