I need a formula that looks into an array and if in that array it has one of the following: TCO302, TCO332, TCO333, then it returns an X in that excel file. Below is the formula I am trying to make work:
=IFERROR(IF(N819="X","X",INDEX(Data!$N$2:$N$2000,MATCH(1,(Data!$B$2:$B$2000=B819)*(ISNUMBER(MATCH(Data!$I$2:$I$2000={"TCO302","TCO332","TCO333"},0))),0))),"")
My last gotitpro suggested the following formula but our time, time out:
:=IF(OR(VLOOKUP(B5,B122:I135,8,0)="TCO302",(VLOOKUP(B5,B122:I135,8,0)="TCO332")),"X","")
Solved by F. W. in 17 mins