Reputation: 73
For example:
How do I remove the last 2 letters or digits on the next column?
Upvotes: 0
Views: 39261
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
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)
Upvotes: 1