Help with Functions in Excel 2013

sree_kalpax

New Member
Joined
May 11, 2015
Messages
7
Hi,
I have 2 sheets in excel (sheet1 & sheet2), in sheet1 I have a column of data in column A (say A1:A4), and in sheet2 I have a matrix of data from A1:F6, the column A data of sheet1 is a subset of column A data in sheet2, now what I want to do is...check whether any cell in column A of sheet1 exists in column of sheet2 and if so, I would like to fix that row in sheet2 and make a selective addition of that row ie., to illustrate with an example,

sheet1
A B C D E
1 $ $$ $$$ $$$$
2 abc
3 def
4 ghi
5 xyz

sheet2
A B C D E F
1 $ $$ $$$ $$$$ $ Total
2 abc 1 22 3 0 2 28
3 chi 5 3 0 2 2 12
4 def 35 3 0 0 1 39
5 uvw 8 9 10 11 0 38
6 mno 1 2 1 1 0 5

Final Result
So in sheet 1 B2, I need the sum of "B2+F2" from sheet2.

Regards,
Sreeder
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
This is the formula I am using

=SUMPRODUCT((Sheet1!$A$9:$A$2000=$C6)*(Sheet1!$B$7:$CO$7=L$5),Sheet1!$B$9:$H$2000)
 
Upvote 0
Your ranges look wrong, try=SUMPRODUCT((Sheet1!$A$9:$A$2000=$C6)*(Sheet1!$B$7:$CO$7=L$5),Sheet1!$B$9:$CO$2000)
 
Upvote 0
Lol no problem, the 3rd part of the formula has to be same number of row as the 1st part & same number of columns as the 2nd part. Gaz
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,742
Members
448,989
Latest member
mariah3

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