LCase() returns characters lowercase : LCase « String Functions « VBA / Excel / Access / Word






LCase() returns characters lowercase

 
Sub lcaseDemo()
    Dim userName As String
    
    userName = "First Name"
    
    Debug.Print lcase(userName)

End Sub

 








Related examples in the same category