UCase Function/text/sbasic/shared/03120310.xhpUCase function
UCase Function
Converts lowercase characters in a string to uppercase.See also: LCase FunctionUCase (Text As String)StringText: Any string expression that you want to convert.Sub ExampleLUCaseDim sVar As String sVar = "Las Vegas" Print LCase(sVar) ' "las vegas" Print UCase(sVar) ' "LAS VEGAS"End Sub