maxmangion AWF VIP Local time Today, 02:15 Joined Feb 26, 2003 Messages 2,805 Apr 5, 2006 #1 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
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
___ ¯¯¯¯¯ Local time Today, 02:15 Joined Nov 27, 2003 Messages 595 Apr 5, 2006 #2 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 Click to expand... =LEFT(A1,LEN(A1)-4) With A1 being the cell with the string.
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 Click to expand... =LEFT(A1,LEN(A1)-4) With A1 being the cell with the string.
maxmangion AWF VIP Local time Today, 02:15 Joined Feb 26, 2003 Messages 2,805 Apr 5, 2006 #3 Thank you for your reply.