Converts all uppercase letters in a text string to lowercase.
Diese Funktion funktioniert in Google Sheets genauso wie in Excel — gleiche Syntax und Argumente.
LOWER(text)The LOWER function takes a text string and returns a new string where every uppercase character is transformed into its lowercase equivalent. Non-alphabetic characters, such as numbers and symbols, remain unchanged by this function.
=LOWER("EXCEL")Ergebnis: excel
Converts the uppercase word 'EXCEL' to lowercase.
=LOWER("Data 2024")Ergebnis: data 2024
Converts letters to lowercase while leaving numbers and spaces as they are.
No, the LOWER function only affects alphabetic characters and ignores numbers and symbols.
LOWER is designed for single strings, but you can use it in an array formula or drag the fill handle to apply it to a range.