Extracting all info in Cell except last 3 characters

  • Thread starter Thread starter Eric D
  • Start date Start date
E

Eric D

I am trying to write a formula to give me the value of a cell except for the
last 3 characters. The amount of characters in the cell vary, but the last 3
that i want excluded remain constant. Any suggestions?

Thanks
 
Hi,

The previous suggest is the one I would make, but this is and alternate

=REPLACE(A1,LEN(A1)-3,3,)
 
Back
Top