vbUpperCase: Converts the given string to uppercase characters. : StrConv « String Functions « VBA / Excel / Access / Word






vbUpperCase: Converts the given string to uppercase characters.

 
Sub strConv1()
    Debug.Print STRConv("lowerCase", vbUpperCase)
End Sub

 








Related examples in the same category

1.vbLowerCase: Converts the given string to lowercase characters.
2.vbProperCase: Converts the given string to propercase (aka title case-the first letter of every word is capitalized).
3.vbUnicode: Converts the given string to Unicode using the system's default code page.
4.vbFromUnicode: Converts the given string from Unicode to the system's default code page.
5.StrConv: vbLowerCase
6.StrConv: vbUpperCase
7.StrConv: vbProperCase