Delete Characters

maxmangion

AWF VIP
Local time
Today, 02:15
Joined
Feb 26, 2003
Messages
2,805
i have a series of strings and i would like to delete the last 4 characters in each string. Which function should i use to achieve this please ?

Thanks
 
maxmangion said:
i have a series of strings and i would like to delete the last 4 characters in each string. Which function should i use to achieve this please ?

Thanks

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

With A1 being the cell with the string.

:)
 
Thank you for your reply.
 

Users who are viewing this thread

Back
Top Bottom