K
Ken Smith
Create the following Module and name it ProperCase
Function Proper(strToChange As String) As String
' Converts string to Proper case
On Error Resume Next
Proper = StrConv(strToChange, vbProperCase)
End Function
The first letter of the first word and every other word
preceeded by a space will be capitalized when you run this
module against the contents of a field.
Function Proper(strToChange As String) As String
' Converts string to Proper case
On Error Resume Next
Proper = StrConv(strToChange, vbProperCase)
End Function
The first letter of the first word and every other word
preceeded by a space will be capitalized when you run this
module against the contents of a field.