I have created this After Update code to generate proper text formatting so when someone enters a name it capitalizes the first letter in each name. (i.e. jane smith it would be viewed as Jane Smith. Code does perfect for that; however when I add parentheses to show maiden name it throws it off. The current after update event code below leaves it as Jane (jones) Smith. I would like it to read Jane (Jones) Smith
This Is My Current Code:
Private Sub MothersNameMaiden_AfterUpdate()
MothersNameMaiden = StrConv(MothersNameMaiden, (vbProperCase)
End Sub
Thanks All For your help and consideration.