Why won't the following formula work:
=IF(OR(RIGHT(B1,3)="601","610","615"),"MfrgPart","VendorPart")
My part #s are ABCD101, DCEF601, the last three digits are always the reference to mfrg part or vendor part.
Any help would be appreciated.
=IF(OR(RIGHT(B1,3)={"601","610","615"}),"MfrgPart","VendorPart")
Try...
=IF(ISNUMBER(MATCH(RIGHT(B1,3)+0,{601,610,615},0)),"MfrgPart","VendorPart")
Thank you much. I see your formula also includes the { } brackets as well as the ( ). Don't see any reference to { } in my Excel book so maybe I need to get a more advanced book.