LCase() returns characters lowercase : LCase « String Functions « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- String Functions
- LCase
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