UCase Function
Main Menu
Description
Returns a string that has been converted to uppercase.

Syntax

UCase(string)

Remarks
Only lowercase letters are converted to uppercase; all uppercase letters and non-letter characters remain unchanged.

The following example uses the UCase function to return an uppercase version of a string:

Dim MyWord
MyWord = UCase("Hello World") ' Returns "HELLO WORLD".

related to
LCase


Main Menu