Programming Reference Manual
 
Syntax
 
UCase[$](S$)
 
Description
Return a string from S$ where all the lowercase letters have been uppercased.
 
Parameter
Description
S$
Return the string value of this after all chars have been converted to lowercase. If this value is Null then Null is returned.
See Also
Example
 
Sub Main
Debug.Print UCase$("Hello") '"HELLO"
End Sub