Does Excel have an operator similar to LIKE?
On Sun, 25 May 2008 05:14:01 -0700, 19nigel91
wrote:
These are location codes. They range from CA-AFG-CJO-S1-0001 TO
CA-AFG-2-0001. The formula is effective but a bit rough. I NEED to maintain
the CA-AFG-CJO-S and also the CA-AFG-2. I need to maintain everything before
the -0001.
If all you want to do is remove the end parameter, in this hyphen separated
string, then all you need is:
=LEFT(A25,FIND(CHAR(1),SUBSTITUTE(A25,"-",
CHAR(1),LEN(A25)-LEN(SUBSTITUTE(A25,"-",""))))-1)
which will return everything up to but not including the last hyphen
--ron
|