Quick Answer

LOWER Function

Makes every letter lowercase.

✓ Excel✓ Google SheetsExcel All versions

Syntax

LOWER
(text)

Parameters

ParameterDescriptionRequired
textThe text or cell reference to convert; can be a literal string in quotes or a cell.Required

Basic Example

Lowercase a word

=LOWER("HELLO")
Resulthello

All uppercase letters are converted to lowercase.

Advanced Examples

Example 1: Normalize an email prefix

Cell A1 contains "[email protected]"

Standardize to lowercase

=LOWER(A1)
Mixed-case text is forced to a consistent lowercase form.

Example 2: Combine with other text

Build a lowercase key from a cell

Lowercase within a concatenation

=LOWER("key-" & A1)
Result: key-abc123
LOWER is applied to the combined string so the whole result is lowercase.

How LOWER Works

LOWER scans each character of the input; uppercase letters are mapped to their lowercase equivalents while every other character (digits, punctuation, spaces) passes through unchanged.

1
Select the text
Click the cell with the text to convert.
2
Enter LOWER
Type =LOWER(cell) and press Enter.

Important Notes & Limitations

  • Does not change non-letter characters.

  • Case conversion follows the system's locale rules and may not cover every Unicode casing edge case.

  • Only affects a single text value; use with arrays or helper columns for ranges.

Common Errors & Fixes

#VALUE! errorPassing a non-text argument in strict contexts.

Fix: Ensure the argument is text or wrap it with TEXT().

Download Practice File

Practice LOWER with Real Data

Download a sample CSV file with pre-populated data and practice exercises for the LOWER function. Works in both Excel and Google Sheets.

Works in Google SheetsCompatible with ExcelIncludes exercises

File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps

Frequently Asked Questions

Does LOWER affect numbers?
No, numbers, spaces, and symbols are left untouched.
What is the opposite of LOWER?
UPPER converts to uppercase; PROPER capitalizes each word.
Can LOWER handle a range?
In modern Excel it can spill across an array; otherwise apply it per cell or with MAP.