How do I - Strip last letter from field

B

Benjamin

I want to strip the last character from a cell, but only if it is a number.
0040:p0200C would return C
040:pT1C would return C
0040:p202 wouldn't return anything or null
 
J

Jacob Skaria

Try the below formula with the data in cell A1

=IF(ISNUMBER(RIGHT(A1,1)+0),"",RIGHT(A1,1))

If this post helps click Yes
 

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

Top