LCase
Use the LCase function to return a specified string, converted to
lowercase.
Syntax
The function LCase returns a variant of type string.
LCase(string)
The required string argument is any valid string
expression. If string contains Null, then Null is returned.
Only uppercase letters are converted to lowercase. All lowercase letters and non-letter characters remain unchanged.
Example
This example returns "no uppercase":
LCase("NO UPPERCASE")