Remove last character of text string

G

Grant

I need a function to drop that last chatacter of a text string. The text
strings vary in length bit I always need to remove the last string. Any
suggestions?

T.I.A.
 
B

BenjieLop

Grant said:
I need a function to drop that last chatacter of a text string. Th
text
strings vary in length bit I always need to remove the last string
Any
suggestions?

T.I.A.


If your string is in, say, A1, this formula

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

will delete the last character of your string.

Regards
 

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