How to get data from other sheet with 2 horizontal criteral and 1 vertical criteria in other sheet

mart_mrexcel

Active Member
Joined
Aug 23, 2008
Messages
295
Office Version
  1. 365
Platform
  1. Windows
How can i get the Actual amount (in Sheet1 Template) with 2 criteria as Horizontal and 1 criteria as vertical in Sheet2 (i.e. my Master Data). See below sample

Template in Sheet1
MonthCCGL CodesActual Amount
April-13FIN420001055
April-13HR4200020648
Feb-13MFG4200030489
April-13MFG42000401563
April-13SALES4200020260

<TBODY>
</TBODY>



Data in Sheet2

MonthCC4200010420002042000304200040
April-13SALES26572605641500
April-13HR10648223655
April-13FIN55987610000689
April-13MFG66654350001563
Feb-13HR696566415687
Feb-13FIN29646982648
Feb-13MFG69494892546

<TBODY>
</TBODY>
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
C2, Sheet2, control+shift+enter, not just enter, copy across, and down:
Rich (BB code):
=INDEX(Sheet1!$D$2:$D$6,MATCH(1,IF(Sheet1!$A$2:$A$6=$A2,
  IF(Sheet1!$B$2:$B$6=$B2,IF(Sheet1!$C$2:$C$6=C$1,1))),0))
 
Upvote 0
Thanks for the reply, but i am getting #N/A. Actually i need the formula to be in sheet1 under the "Actual Amount" and drag it down (with CSE)
 
Upvote 0
Thanks for the reply, but i am getting #N/A. Actually i need the formula to be in sheet1 under the "Actual Amount" and drag it down (with CSE)

D2, Sheet1, control+shift+enter, not just enter, and copy down...
Rich (BB code):
=INDEX(Sheet2!$C$2:$F$8,MATCH(1,IF(Sheet2!$A$2:$A$8=$A2,
  IF(Sheet2!$B$2:$B$8=$B2,1)),0),MATCH($C2,Sheet2!$C$1:$F$1,0))
 
Upvote 0
Sheet1 D2

Code:
=INDEX(Sheet2!$A$1:$F$8,SUMPRODUCT((Sheet2!$A$1:$A$8=A2)*(Sheet2!$B$1:$B$8=B2)*ROW(Sheet2!$A$1:$A$8)),MATCH(C2,Sheet2!$1:$1))

i am assuming sheet2 is from Range A1 to F8

Or if range is huge then use

Code:
=INDEX(Sheet2!A:F,SUMPRODUCT((Sheet2!A:A=A2)*(Sheet2!B:B=B2)*ROW(Sheet2!A:A)),MATCH(C2,Sheet2!$1:$1))
 
Last edited:
Upvote 0
Sheet1 D2

Code:
=INDEX(Sheet2!$A$1:$F$8,SUMPRODUCT((Sheet2!$A$1:$A$8=A2)*(Sheet2!$B$1:$B$8=B2)*ROW(Sheet2!$A$1:$A$8)),MATCH(C2,Sheet2!$1:$1))

i am assuming sheet2 is from Range A1 to F8

Or if range is huge then use

Code:
=INDEX(Sheet2!A:F,SUMPRODUCT((Sheet2!A:A=A2)*(Sheet2!B:B=B2)*ROW(Sheet2!A:A)),MATCH(C2,Sheet2!$1:$1))


Hi Mr. Vds1 thanks for your reply.. i am also trying your formula ... but i am getting #N/A
 
Upvote 0
D2, Sheet1, control+shift+enter, not just enter, and copy down...
Rich (BB code):
=INDEX(Sheet2!$C$2:$F$8,MATCH(1,IF(Sheet2!$A$2:$A$8=$A2,
  IF(Sheet2!$B$2:$B$8=$B2,1)),0),MATCH($C2,Sheet2!$C$1:$F$1,0))

Mr. Aladin, just a follow up .... I cannot drag it down (CSE) i am receiving a message that "You cannot change part of an array"...
 
Upvote 0
Thanks Mr. Aladin that works perfectly okay. have a great day!

You are welcome.

Mr. Aladin, just a follow up .... I cannot drag it down (CSE) i am receiving a message that "You cannot change part of an array"...

You must enter the formula in the appropriate cell, apply control+shift+enter, then drag it down.

I guess you dragged it first then applied control+shift+enter. That creates an array area you cannot change. If so, delete this area entirely and implement the formula the proper way (see above).
 
Upvote 0

Forum statistics

Threads
1,214,584
Messages
6,120,387
Members
448,956
Latest member
JPav

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