a macro to PROPER text
Hi
Sub SetProper()
Dim c As Range
For Each c In Selection
c.Value = WorksheetFunction.Proper(c.Value)
Next
End Sub
--
Regards
Roger Govier
"pcor" wrote in message
...
I would like a macro that would set the "proper" format for the cell
selected.
Thanks
|