views:

136

answers:

3

I want to strip off the last character in a string on a given cell. I was trying to use the following formula:

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

This pisses off Excel as it is a circular reference on cell A2...

I'm terrible with Excel formulas... any help is greatly appreciated. Thanks.

A: 

Do you need it in the same column? I'm not sure you can do that w/o VB.
Normally I just insert a column to the left of the input data, then use your above formula in column B.

GoingTharn
+4  A: 

It works for me. Are you sure you are not changing the same cell (A2)

Kristoffer
Thank you sir, for pointing out my stupidity.
clownbaby
A: 

Wotks for me, cell B1 = LEFT(A1,LEN(A1)-1), and A1 = tada, value = tad.

What exactly are you doing?

astander