View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Dynamic Range Within INDEX

Try something like this:

A1 = value1
B1 = value2

=INDEX(INDEX(C:C,A1):INDEX(L:L,B1),A3,B3)

--
Biff
Microsoft Excel MVP


"BugOnPoint" wrote in message
...
I would like to set up the use if the INDEX fcn so that elements of the
range
can be set based on the values in specified cells. Sort of like this:

=INDEX($C[value1]:$L[value2],A3,B3)

where value1 and value2 are the numeric value of specified cells, say C1
and
D1.

I suspect the use of OFFSET is involved, but I can't quite figure out the
syntax.
Any suggestions appreciated.

Thanks