UCase$ Function
Syntax
UCase[$](S$)
Group
Description
Returns a string from S$ where all the lowercase letters are converted to uppercase.
Parameters
| Parameters | Description |
|---|---|
| S$ | Returns the string value of this after all chars are converted to uppercase. If this value is Null, Null is returned. |
Example
Sub Main Debug.Print UCase$("Hello") '"HELLO" End Sub
See also