UCase$ Function
SyntaxGroupUCase[$](S$)
StringDescription
Return a string from S$ where all the lowercase letters have been uppercased.
See Also
Parameters Description S$ Return the string value of this after all chars have been converted to uppercase. If this value is Null then Null is returned.
LCase$( ), StrComp( ), StrConv$( )
Sub Main Debug.Print UCase$("Hello") '"HELLO" End Sub