View Single Post
  #2   Report Post  
olasa
 
Posts: n/a
Default


This could perhaps give you some clues...

=IF(B4="","",IF(VLOOKUP(B4,$AD$3:$AE$48,2,TRUE)=0, "",VLOOKUP(B4,$AD$3:$AE$48,2,TRUE)))

Also... I usually us VLOOKUP(B4,$AD$3:$AE$48,2,FALSE) or 0 instead of
False (same thing) to find exact matches. That way I don't need to sort
the lookup table.
Then use ...IF(ISERROR(VLOOKUP(B4,$AD$3:$AE$48,2,0)),"",...

Hope it helped
Ola Sandström


--
olasa
------------------------------------------------------------------------
olasa's Profile: http://www.excelforum.com/member.php...o&userid=17760
View this thread: http://www.excelforum.com/showthread...hreadid=390805