View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bc4240 bc4240 is offline
external usenet poster
 
Posts: 2
Default Reverse a function to return the array?

On Jul 29, 3:12*pm, "Bob Phillips" wrote:
I had to leave you something to do <g

--
__________________________________
HTH

Bob

"Harlan Grove" wrote in message

...



"Bob Phillips" wrote...
Do you mean


INDIRECT(ADDRESS(1,MATCH("lookup",1:1,0))&":"&AD DRESS(500,MATCH("lookup",*1:1,0)))

...


If so, wouldn't


INDEX($A$1:$IV$500,0,MATCH("lookup",$A$1:$A$500,0) )


be preferable in terms of brevity, efficiency (only 1 MATCH call) and
use of only nonvolatile functions?- Hide quoted text -


- Show quoted text -


Bob Yes this did work for me after I looked at it twice I used the
address portion to populate a sepeate cell and then used the Indirect
to fill my range requirements for my Index function PERFECT
solution!!!!!! Thanks