Sentence Case (Capitalize First Letter Only)

Excel Formulas › Text

All versionsUPPER

PROPER capitalizes every word; sometimes you want only the first letter capitalized, like a sentence. Combine UPPER on the first character with LOWER on the rest.


Quick formula: sentence-case the text in A2:
=UPPER(LEFT(A2,1)) & LOWER(MID(A2,2,LEN(A2)))
Uppercase the first character, lowercase everything after it — classic sentence case.

Functions used (tap for the full reference guide):

The example

A shouty cell turned into a clean sentence.

AB
1RawSentence case
2the QUICK brown foxThe quick brown fox

The formula

First letter up, the rest down:

=UPPER(LEFT(A2,1)) & LOWER(MID(A2,2,LEN(A2))) // only the first letter capitalized

How it works

Two halves, cased differently:

  1. LEFT(A2,1) is the first character; UPPER capitalizes it.
  2. MID(A2, 2, LEN(A2)) is everything from the 2nd character on; LOWER makes it lowercase.
  3. Concatenate the two with & for sentence case.
  4. For Title Case instead (every word), use the built-in PROPER(A2).

Multiple sentences? This caps only the very first letter. To capitalize after each period you’d need a more complex formula or a small helper — but for headlines, labels, and single sentences this is exactly right.

Try it: interactive demo

Live demo

Type text; see sentence case.

Result:

Variations

Title case

Every word:

=PROPER(A2)

All caps / lower

Simple:

=UPPER(A2) / =LOWER(A2)

Trim first

Clean leading spaces:

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

Pitfalls & errors

Only the first letter. This doesn’t capitalize after periods — it’s for a single sentence or label.

Leading spaces. A space as the first character gets “capitalized” (no effect) and the real first letter stays lower. TRIM first if needed.

MID length. Using LEN(A2) as the MID length safely grabs the whole remainder.

Practice workbook

📊
Download the free Sentence Case (Capitalize First Letter Only) practice workbook
A sentence-case sheet with PROPER, upper/lower, and trim variants, plus 4 challenges with answers. No sign-up required.

Frequently asked questions

How do I capitalize only the first letter in Excel?
Use =UPPER(LEFT(A2,1)) & LOWER(MID(A2,2,LEN(A2))). It uppercases the first character and lowercases the rest — sentence case.
How is that different from PROPER?
PROPER capitalizes the first letter of every word (Title Case). The sentence-case formula capitalizes only the very first letter.
How do I capitalize after every period?
That needs a more complex formula or helper steps; the simple formula handles a single sentence or label.

Stop fighting formulas. Learn them in a day.

This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related formulas: Proper case · Title case with exceptions · Clean text

Function references: UPPER · LOWER