Skip to main content
SheetCraft
🔤 Text Function · beginner

UPPER Function in Google Sheets

Converts text to uppercase.

Syntax

UPPER(text)

Returns: text in uppercase.

Excel equivalent: UPPER (identical)

Parameters

NameRequiredDescription
textRequiredString to convert.

Examples

Case-insensitive comparison

=UPPER(A2) = UPPER(B2)

Compare ignoring case.

Whole column

=ARRAYFORMULA(UPPER(A2:A100))

Apply to a column.

When to use an alternative

  • LOWERLowercase.
  • PROPERTitle case.
  • EXACTCase-sensitive comparison.

Common errors and how to fix them

  • Numbers unchanged

    Cause: Only affects text.

    Fix: TEXT() first if needed.

Related functions

Frequently Asked Questions

Accented chars?

Yes — Unicode case mappings. é → É.

First letter only?

UPPER(LEFT(A2,1)) & LOWER(MID(A2,2,LEN(A2))).

Source: Google Sheets official function reference.