=LOOKUP(B2,$A$2:$A$9,{"true","true","true","true","true","true","true","true"})
Hi Deepak,=LOOKUP(B2,$A$2:$A$9,{"true","true","true","true","true","true","true","true"})
Hi Deepak,
1.Thanks for your quick response. I need answer yes or no.
2.I can't understand the formula what you did. Kindly advice it.
Thanks in advance
Hi Khalid,Hi Ali,
We can wrap Deepak's formula with IFERROR for Yes / No:
=IFERROR(LOOKUP(B2,$A$2:$A$9,{"Yes","Yes","Yes","Yes","Yes","Yes","Yes","Yes"}),"No")
If text is found it will return Yes, else No.
But:
1) as XOR LX mentioned, this will not give correct answer when the data is not sorted alphabetically.
2) This will cross the limit of using lookup formula only.
Regards,
Wow. Great bro.Hi:
Find the attached. Please test it and let me know.
Thanks
Hi,Maybe something like this? Pls find the file attach
cheers
Hi Syedali / Nebu ,
You need to check whether the SEARCH function is OK for your requirements , since this will return TRUE even if the received file name in column B is part of the file name in column A ; thus a received file name of BCB will match a file name in column A of BCBS.
If an exact match is required , you can use :
=IF(ISTEXT(C2),IFERROR(IF(LOOKUP(2^15,MATCH($B$2:$B$9,C2,0)),"Yes"),"No"),"")
Narayan