View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Roger Govier[_3_] Roger Govier[_3_] is offline
external usenet poster
 
Posts: 2,480
Default 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