View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default Lookup Multiple Occurrence Of Item In Array

Hi
try the following array formula
=INDEX(result,SMALL(IF(lookup array=lookup value,ROW(lookup
array)),ROW(1:1)))
and copy this down

--
Regards
Frank Kabel
Frankfurt, Germany


John Sharkey wrote:
I have a list of names and telephone numbers. Many people on the list
have multiple numbers. When I use Index(result,Match(lookup
value,lookup array,0)), I always get the first phone number. I would
like to be able to find the second and third phone numbers of
individuals.

Is there a way to do this?

Thanks.