Trim rightword letter in a word

  • Thread starter Thread starter amag
  • Start date Start date
A

amag

I have a list in which the last letter is x e.g DDLX, BBLX, XCVFX. I
want the final list to look like DDL, BBL, XCVF.

TIA/Amag
 
amag said:
I have a list in which the last letter is x e.g DDLX, BBLX, XCVFX. I
want the final list to look like DDL, BBL, XCVF.

TIA/Amag

For a list in column A starting at A1, put this formula in B1
=LEFT(A1,LEN(A1)-1)
and copy down as far as necessary.

If you want, you can then copy column B and use
Edit > Paste Special > Values
to paste the results, allowing the original list to be deleted.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top