LCase
Purpose
Returns a Variant (string) containing the specified string, converted to lowercase.
Syntax
LCase(string)
Description
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
Function | Result |
---|---|
LCase("NO UPPERCASE") | "no uppercase" |