Description
Returns a string that has been converted to uppercase.
Syntax
UCase(string)
The string named argument is any valid string expression. If string contains no valid data, Null is returned.
Remarks
Only lowercase letters are converted to uppercase; all uppercase letters and nonletter characters remain unchanged.
See Also
LCase Function.
Example
This example uses the UCase function to return an uppercase version of a string.
LowerCase = "Hello World 1234" ' String to convert. UpperCase = UCase(LowerCase) ' Returns "HELLO WORLD 1234".