vbProperCase: Converts the given string to propercase (aka title case-the first letter of every word is capitalized). : StrConv « String Functions « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- String Functions
- StrConv
vbProperCase: Converts the given string to propercase (aka title case-the first letter of every word is capitalized).
Sub strConv3()
Debug.Print STRConv("lowerCase", vbProperCase)
End Sub
Related examples in the same category