I am using the following code to capitalize the first letter of each word in columns D,E,F and I.

Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.CountLarge > 1 Then Exit Sub
    If Not Intersect(Target, Range("D:D,E:E,F:F,I:I")) Is Nothing Then
        Application.EnableEvents = False
        Target.Value2 = Application.WorksheetFunction.Proper(Target)
        Application.EnableEvents = True
    End If
End Sub
What can I add to also Capitalize the entire word in columns C and J.

Thank you