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

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -