=LOWER(text)
=LOWER("Apple")
The LOWER function is used to convert any text string to all lowercase. For example, this returns "apples".
=LOWER("APPLE")
The LOWER function is not case-sensitive, so the same result is returned when the same string is inputted in uppercase. For example, this returns "apples" as well.
=LOWER(A1)
The LOWER function can also be used on cell references. For example, this which contains the number "44373" will return "44373".
=LOWER(A1)
The LOWER function is not case-sensitive, so the same result is returned when the same cell reference is inputted in uppercase. For example, this will still return "44373".
The LOWER function is used to convert all letters in a text string to lowercase without changing non-character letters.