VLOOKUP and Referencing a Range in a Formula

G

GTblearch

I have a formula that I am trying to execute which looks up the code/city in
Col-A and returns the REFERENCE to the corresponding arrays that are in Cols
B-F. The reference is then used to pull the contents of the array(s) into
another formula:

Col-A Col-B Col-C Col-D Col-E Col-F
TEXT (entered as arrays)

3777Chicago 2006 2007 2008 2009
3750Boston 2006 2007 2008
3737Detroit 2007 2008 2009
3750Denver 2008 2009 2008

The formula is in "Worksheet-A", while the above data is in a worksheet
called "REF_Table". I've been trying to use the code/city data in Col-A as a
"pointer" to the fiscal years data contained in each corresponding array.
I've tried every combination of MATCH, OFFSET, INDIRECT, INDEX that I can
think of to no avail. Any suggestions?? Thanx in advance.

- GTblearch
 
E

Eduardo

Hi,
try
=sumproduct((a1=REF_Table!$A$1:$A$1000),REF_Table!b$1:b$1000)

change range to fit you needs
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top