Posted to microsoft.public.excel.programming
|
|
Uppercase to Lower Case
Or, without the loop...
Sub FixCase()
With Range("A3").Resize(Cells(Rows.Count, 1).End(xlUp).Row - 2, 3)
.Value = Application.Proper(.Value)
End With
End Sub
--
Rick (MVP - Excel)
"Don Guillett" wrote in message
...
One way
Sub fixcase()
For i = 3 To cells(rows.count,1).end(xlup).row
Cells(i, 1).Resize(, 3).Value = _
Application.Proper(Cells(i, 1).Resize(, 3).Value)
Next
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"Paul Black" wrote in message
...
Good afternoon everybody,
In column "A" i have for example 09.E.BROWN
In column "B" i have ELIZABETH
In column "C" i have BROWN
... what I ideally want is ...
In column "A" 09.E.Brown
In column "B" Elizabeth
In column "C" Brown
... please. Is there three formulas that I can use to change to the
required text.
Thanks in advance.
Paul
|