Returns a string that has been converted to lowercase.
LCase(string)
The string argument is any valid string expression. If string contains Null, Null is returned.
Only uppercase letters are converted to lowercase; all lowercase letters and nonletter characters remain unchanged.
UCase Function.
This example uses the LCase function to return a lowercase version of a string.
Uppercase = "Hello World 1234" ' String to convert.= LCase(UpperCase) ' Returns "hello world 1234".