PDA

View Full Version : deleting the last 5 digits per cell



Shaolin
09-02-2008, 07:47 AM
In column E row 2 to about row 700, I would like to delete the last 5 digits in each of those rows.

Imagine an address with the zip code at the end. How can I delete the zip code (last 5 digits) in excel?

lifeson
09-02-2008, 08:05 AM
=LEFT(A1,LEN(A1)-5)

assumes the text string is in A1 and there are no spaces

Shaolin
09-02-2008, 08:36 AM
Thanks for your help.