=IF(NOT(ISERROR(VLOOKUP(A2,$D$2:$E$6,1,0))),
If VLOOKUP(A2,$D$2:$E$6,1,0) does not result in an error (a match is found), then
VLOOKUP(A2,$D$2:$E$6,2,0),
do the VLOOKUP and show that result; Else
IF(NOT(ISERROR(MATCH(A2&" 25",$D$2:$D$6,0))),
If MATCH(A2&" 25",$D$2:$D$6,0) does not result in an error (a match is found), then
INDEX($E$2:$E$6,MATCH(A2&" 25",$D$2:$D$6,0))
do an INDEX/MATCH to show that result (from column E); Else
"-"))
show "-".
Bookmarks