Tom try the following;
Sub Convert_UpperC()
'*******************************************
'* This will convert ALL uppercase Text in *
'* a sheet to Lower case. *
'* Macro created 10-07-99 by Ivan F Moala *
'*******************************************
Dim TextUCase
Dim UCaseCell As Range
Set TextUCase = Range("A1").SpecialCells(xlCellTypeConstants, 2)
For Each UCaseCell In TextUCase
UCaseCell.Select
ActiveCell = LCase(UCaseCell)
Next
End Sub
NOTE: it will turn ALL upper case text on the
sheet to lowercase!
doing a selected range is alittle diff.
Regards
Ivan