Multiple Criteria, One Answer

  • Thread starter Thread starter mark.wolven
  • Start date Start date
M

mark.wolven

I have some dirty data and I want to arrange it into a cross reference kind of table and be able to filter it later, maybe.

The data looks something like this.

(below represents Range AA1:AC4 - for example.)
Team Depth Player Name
GB QB1 Aaron Rodgers
GB QB3 Graham Harrell
GB QB2 Vince Young

In a different part of the workbook, I want a formula that will take the input "GB" say from cell A1 and the input "QB2" from cell B1 and have the result "Vince Young" populate cell C1.
 
Hi,

Am Fri, 23 Aug 2013 12:36:31 -0700 (PDT) schrieb (e-mail address removed):
(below represents Range AA1:AC4 - for example.)
Team Depth Player Name
GB QB1 Aaron Rodgers
GB QB3 Graham Harrell
GB QB2 Vince Young

In a different part of the workbook, I want a formula that will take the input "GB" say from cell A1 and the input "QB2" from cell B1 and have the result "Vince Young" populate cell C1.

try:
=INDEX($AC$1:$AC$100,MATCH(A1&B1,$AA$1:$AA$100&$AB$1:$AB$100,0))
and enter the array formula with CTRL+Shift+Enter


Regards
Claus B.
 

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

Back
Top