Multiple Criteria Lookup

Nicole87

New Member
Joined
Feb 18, 2014
Messages
35
Hi,

I am trying to write a formula that picks up a value within a set of data with two criterias, one is in a row and the other in a column - is this possible?

This is the table where I want to create the formulas. I am trying to pick up the value with the date and the type (eg. SIG).
7 8 9 10 11 12 13
16/02/2014 23/02/2014 28/02/201409/03/201416/03/2014 23/03/2014 30/03/2014
SIG
PUB
DEL
AUD
OTH

<tbody>
</tbody>

<tbody>
</tbody>

This is where the data needs to come from:


28/02/201431/03/201430/04/201431/05/201430/06/2014 31/07/2014 31/08/2014 30/09/2014
SIG57259.99 59289.333312000 13333.33330000
DEL09666.6633320000014625.83335000010666.67
HB PUB5000250050008833.3333302500
MP PUB00000000
EBOOK00000000
TOTAL57759.9968955.99673450013833.333314625.833313833.3333013166.67

<tbody>
</tbody>


I have tried numerous formulas such as lookups, INDEX & MATCH functions however all the examples seem to draw off data that is set out in columns rather than both columns & rows.

Thanks.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Hi

SIG and DEL will be easy to lookup since they are in both tables, but what is PUB, AUD and OTH?
 
Upvote 0
Hi

SIG and DEL will be easy to lookup since they are in both tables, but what is PUB, AUD and OTH?

Ah sorry I picked up the wrong table example so it would be related to the same types, so the first table would be

UNSIGNED
SIG
DEL
HB PUB
MP PUB
EBOOK

Thanks,

<colgroup><col></colgroup><tbody>
</tbody>
 
Upvote 0
If your 2nd table is in A1:J7, then in your 1st table enter =INDEX($A$1:$K$7,MATCH($A15,$A$1:$A$7,FALSE),MATCH(B$14,$A$1:$K$1,FALSE)) To the immediate right of the Sig and under the column containing 16/02/2014. copy down and to the right.
 
Upvote 0
Here is my SUMIF-suggestion:
=SUMIF($A$2:$A$7,$A13,B$2:B$7)

2nd table still in A1:J7 and formula in the first cell you want to calculate.
 
Upvote 0
Last edited:
Upvote 0
If your 2nd table is in A1:J7, then in your 1st table enter =INDEX($A$1:$K$7,MATCH($A15,$A$1:$A$7,FALSE),MATCH(B$14,$A$1:$K$1,FALSE)) To the immediate right of the Sig and under the column containing 16/02/2014. copy down and to the right.

Great - thanks very much!
 
Upvote 0

Forum statistics

Threads
1,215,416
Messages
6,124,772
Members
449,187
Latest member
hermansoa

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top