Excel - pick specific characters from a string after a number -
i have list of strings want split numbers , alphabets part. e.g. in cell a1 have "fnn-12345 - sample text - 2016_aa1.1" (without quotes ""). want split "sample text - 2016_aa1.1".
appreciate guidance on formula.
cheers.
this universal solution, no matter first alphanumeric string is:
=right(a1,len(a1)-find(" - ",a1)-2) it finds first occurence of string " - " , keeps part after string.
Comments
Post a Comment