Either with a helper column and the PROPER function or VBA event code to
change in-cell when entered.
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Column <> 1 Then Exit Sub 'adjust to suit
On Error GoTo ErrHandler
Application.EnableEvents = False
Target.Formula = Application.Proper(Target.Formula)
ErrHandler:
Application.EnableEvents = True
End Sub
Gord Dibben MS Excel MVP
On Fri, 5 Mar 2010 10:15:25 -0500, "John Persico" <reply@newsgroup.com>
wrote:
>Is there anyway to for a column to use Title Capitalization?

Microsoft® Excel® based database addin
| + Reply to Thread
Results 1 to 4 of 4
Thread: Title Capitalization
Similar Threads
|
Forum
LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks