UCase() returns characters uppercase : UCase « String Functions « VBA / Excel / Access / Word






UCase() returns characters uppercase

 
Sub ucaseDemo()
    Dim userName As String
    
    userName = "First Name"
    
    Debug.Print UCase(userName)

End Sub

 








Related examples in the same category