UCase
Returns a string that has been converted to uppercase.
Structure
UCase(string)
Parameters
The string argument is any valid string expression. If string contains Null, Null is returned.
Description
Only lowercase letters are converted to uppercase; all uppercase letters and non-letter characters remain unchanged.
Example
The following example uses the UCase function to return an uppercase version of a string:
Dim MyWord
MyWord = UCase("Hello World") ' Returns 'HELLO WORLD'. |