In cell A1 is:
12.53LNAME
I need to separate the 12.53 from LNAME.
I tried
=IF(ISNUMBER(FIND(".",A1)),LEFT(A1,FIND(".",A1)-2),"None"
All I am getting is the word "None" which is the false part of IF statement. Can someone lend a hand?
Thank in advance.
12.53LNAME
I need to separate the 12.53 from LNAME.
I tried
=IF(ISNUMBER(FIND(".",A1)),LEFT(A1,FIND(".",A1)-2),"None"
All I am getting is the word "None" which is the false part of IF statement. Can someone lend a hand?
Thank in advance.