Skip to main content
SheetCraft
🔤 Text Function · beginner

LOWER Function in Google Sheets

Converts text to lowercase. Used for email normalization and case-insensitive dedup.

Syntax

LOWER(text)

Returns: text in lowercase.

Excel equivalent: LOWER (identical)

Parameters

NameRequiredDescription
textRequiredString to convert.

Examples

Normalize emails

=LOWER(TRIM(A2))

Lowercase + trim for dedup.

Whole column

=ARRAYFORMULA(LOWER(A2:A100))

Apply to a column.

When to use an alternative

  • UPPERUppercase.
  • PROPERTitle case.

Common errors and how to fix them

  • Doesn't fix dupes

    Cause: Hidden whitespace.

    Fix: Combine LOWER(TRIM(A2)).

Related functions

Frequently Asked Questions

Why LOWER + TRIM?

Both case and whitespace are common dedup failures. Important for emails.

Source: Google Sheets official function reference.