Index, match, multiple IFs query

Z

zx6roo

I have the following individual functions
=INDEX(Sheet2!$D$3:$H$7,MATCH($F7,ONE,0),5)
=INDEX(Sheet2!$D$3:$H$7,MATCH($F7,TWO,0),5)
=INDEX(Sheet2!$D$3:$H$7,MATCH($F7,THREE,0),5)
=INDEX(Sheet2!$D$3:$H$7,MATCH($F7,FOUR,0),5)
=INDEX(Sheet2!$D$3:$H$7,MATCH($F7,FIVE,0),5)


I need to combine them all in the same cell so IF F7 matches data in ranges
ONE, TWO, ETC it will return whatever is in column 5.

I’ve done some searching on the net and also looked at Microsoft’s help on
this. I can see how to create a multiple function if I want it to be ONE &
TWO but not ONE or TWO. I’ve tried various combinations of functions but a
little stuck.

Any help is much appreciated.
 
J

Jacob Skaria

Please let us know the cell range of ONE TWO ...etc; refers to..and if
possible elaborate a bit more about how your data is arranged
 
S

Steve Dunn

Will the value in F7 always appear exclusively in one of the ranges, or
could it appear in more than one?
 
Z

zx6roo

The data on sheet two is arranged in as a table.
Range ONE is B4 to B8
Range TWO is C4 to C8
And so on.

F7 can be anything in any of those ranges. What I want is for a lookup to
see what is in F7, look at the table, find whic range it is in and then give
me the number that is located in column 5 of that range.
 
Z

zx6roo

sorry I meant column 5 not 7


Steve Dunn said:
Will the value in F7 always appear exclusively in one of the ranges, or
could it appear in more than one?
 
Z

zx6roo

Hi, no that didn't work.

The cells on sheet two B3:H7 are all text except column 5 which is a number.
Sheet one F7 will be the text from anywhere within the sheet two B3:H7area
(except column 5). Each row within the table area has a specific number - so
if the text matched B3 the number is 1, if the text matched H7 the number is
1, if the text matched B4 the number is 2.

I want it to automatically match the text in the table then look at the
number in column 5 from the row (which I gave the range names to) and show me
that number in the cell on sheet one.

Did I explain that cleary? I can attach an example if needed.
 
S

Steve Dunn

Hi,

slight adjustments to Ashish's solution, to suit your sheets:

=INDEX(Sheet2!$B$3:$H$7,SUMPRODUCT((Sheet2!$B$3:$H$7=$F$7)*(ROW(Sheet2!$B$3:$H$7)-CELL("row",Sheet2!$B$3:$H$7)+1)),4)
 

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

Similar Threads

concantenate then index match 2
Index Match Help 6
match function with nested if 12
INDEX MATCH 4
Adding OR to an index match formula 2
Lookup / Index/Match 3
more re index and match 6
Imposs? Speed up 1

Top