J
jen2018
How can I make sure that people enter information into a cell in Title Case?
Mike H said:maybe a bit to buggy, try this instead
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
Target.Formula = WorksheetFunction.Proper(Target.Formula)
End Sub