Back to functions
Text2026-06-132 related articles

UPPER Function in Excel

Convert all letters in a text string to uppercase.

Syntax

UPPER(text)

Arguments

text

Required

The text or cell reference you want to convert to uppercase.

What it returns

Returns the text with lowercase letters converted to uppercase.

What UPPER does

UPPER converts every lowercase letter in a text string to uppercase. It is useful when you want a consistent casing standard for labels, IDs, or lookup values.

Practical examples

Convert a value to uppercase

=UPPER(A2)

Use this when you want to normalize mixed-case values before comparing them.

Standardize both sides of a comparison

=EXACT(UPPER(A2),UPPER(B2))

This compares two values after converting both to uppercase first.

Common mistakes and notes

UPPER changes letters only

Numbers, punctuation, and spaces remain unchanged.

Case normalization does not remove hidden characters

If a match still fails after using UPPER, check for spacing or invisible-character issues with functions like TRIM or CLEAN.

Related functions

Related articles

Deep dives, troubleshooting guides, and practical examples that use UPPER.

Official documentation