ramon
ramon

Reputation: 73

Excel formula: How do I remove last two digits or last two letters in column?

For example:

enter image description here

How do I remove the last 2 letters or digits on the next column?

Upvotes: 0

Views: 39261

Answers (2)

Miguel_Ryu
Miguel_Ryu

Reputation: 1418

This Should do it.

=LEFT(A1,LEN(A1)-2)

What we do in the formula is ask for the Left side of the text from the total string lenght minus two, which removes the 2 last characters in the string.

Upvotes: 0

Karthick Gunasekaran
Karthick Gunasekaran

Reputation: 2713

Assuming your data starts with A1 and apply the below formula in b1 and drag down (select B1 to B11 and CTRL + D)

=RIGHT(A1,2)

enter image description here

Upvotes: 1

Related Questions