FormulaCraft

How to remove the first character from a cell in Excel and Google Sheets

Topic:Text manipulation
Excel & Google Sheets
=RIGHT(A2,LEN(A2)-1)

Verified example

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

OriginalTrimmed
$1000
#Error
*Note
@User
-Tag

=RIGHT(A2,LEN(A2)-1)000

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. 1Click the destination cell (e.g. B2).
  2. 2Enter =RIGHT(A2,LEN(A2)-1) — LEN(A2) gives the total character count; subtracting 1 skips the first character.
  3. 3Press Enter and copy the formula down.
  4. 4To remove the first N characters instead, change -1 to -N.

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

What happens if the cell contains only one character?

RIGHT returns an empty string, which is correct behavior — the result is simply blank.

Can I use MID instead?

Yes — =MID(A2,2,LEN(A2)) is equivalent and also removes the first character.

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: