G
Guest
How do I do an IF function on this: If the 1st 2 characters in a cell are "15" return the word "Services, if not return the word "Materials"?
"15" return the word "Services, if not return the word "Materials"?Felicia said:How do I do an IF function on this: If the 1st 2 characters in a cell are
characters in a cell are "15" return the word "Services,-----Original Message-----
How do I do an IF function on this: If the 1st 2
How do I do an IF function on this: If the 1st 2 characters in a cell are "15" return the word "Services, if not return the word "Materials"?
...=CHOOSE(ISNUMBER(FIND("15",K6))+1,"Materials","Services")
Harlan Grove said:...
..
..
Someone has to ask: why should anyone use this rather than the other formula you
proposed:
=IF(LEFT(A2,2)=15,"Materials","Services")
?