Hi Mammoth,
Try the following macro:
Sub ConvertToLowerCase()
Dim rCell As Range
Dim sh As Worksheet
Set sh = Sheets("Sheet1") '<<==== CHANGE
On Error Resume Next
For Each rCell In sh.Cells.SpecialCells(xlCellTypeConstants, 2)
rCell.Value = LCase(rCell.Value)
Next rCell
On Error GoTo 0
End Sub
Change Sheet1 to the required sheet name.
If you are new to macros, see David McRitchies notes at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
---
Regards,
Norman
"Mammoth" wrote in message
...
How do you convert uppercase copy to lowercase copy in an entire excel
spreadsheet?