vbUpperCase: Converts the given string to uppercase characters. : StrConv « String Functions « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- String Functions
- StrConv
vbUpperCase: Converts the given string to uppercase characters.
Sub strConv1()
Debug.Print STRConv("lowerCase", vbUpperCase)
End Sub
Related examples in the same category