FormulaCraft

How to capitalize the first letter in Excel and Google Sheets

Topic:Text manipulation
Excel & Google Sheets
=UPPER(LEFT(A2,1))&MID(A2,2,LEN(A2))

Verified example

Computed by a real spreadsheet engine on the sample data below.

OriginalCapitalized
hello world
excel tips
data entry
formula guide
sheet tricks

=UPPER(LEFT(A2,1))&MID(A2,2,LEN(A2))Hello world

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1Enter =UPPER(LEFT(A2,1))&MID(A2,2,LEN(A2)) in the target cell.
  2. 2UPPER(LEFT(A2,1)) extracts and uppercases the first character.
  3. 3MID(A2,2,LEN(A2)) returns every character from the second position onward, unchanged.
  4. 4The & operator joins them into the final string with only the first letter capitalized.

Tips

Need it for your exact data?

Describe your columns in plain English and get the precise formula for your sheet, with the right Excel or Sheets syntax.

Frequently asked

Why not just use PROPER?

PROPER capitalizes the first letter of every word (e.g. "hello world" becomes "Hello World"), not just the sentence's first letter.

Does this handle cells that start with a number or symbol?

Yes — UPPER on a non-letter character has no effect, so the formula works safely on any string.

More on Text manipulation

See all →

Formulas used

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: