Hello,
So I've got col. A and B. I want to search the text in A, but without the last 5 char. in Col. B. Here's that code which works fine.
But now instead of displaying an X, I want to pull the last 5 characters from column B for which the code above would have normally put an X.![]()
=IF(COUNTIF(B:B,"*"&LEFT(A2,LEN(A2)-5)&"*"),"x","")
So, Conceptually I have this which doesn't work.
![]()
=IF(COUNTIF(B:B,"*"&LEFT(A2,LEN(A2)-5)&"*"),RIGHT(B:B, 5),"")
Bookmarks