I'm not sure where your range of data you want to change to Lower Case so I
assume it is in Sheet1 in Col. A. Here is some code you can run which will
change all data in Column to lower case. Hope this helps! If so, let me
know, click "YES" below.
Sub ConvertToLowerCase()
Dim rng As Range
With Sheets("Sheet1")
For Each rng In .Range("A1:A" & .Cells(Rows.Count, "A").End(xlUp).Row)
rng.Value = LCase(rng.Value)
Next rng
End With
End Sub
--
Cheers,
Ryan
"Ryan H" wrote:
> Use the LCase Function.
>
> LCase("Your String Here")
>
> Hope this helps! IF so, let me know, click "YES" below.
> --
> Cheers,
> Ryan
>
>
> "Mervyn Thomas" wrote:
>
> > Does anyone have a bit of code to convert a file of conatcts all in
> > UPPERCASE to Lower Case?
> >
> >
> > .
> >
|