sumproduct Rows and Column reference that Contains string

djossh

Board Regular
Joined
Jul 27, 2009
Messages
243
Please help. im trying to sumtotal all column(s) that contains text string "Meal" in col B7:O7 (Book2/sheet1) and (Book2/sheet1 Col A8:A37 that match with my row refence in Col A7 (Book1/sheet1).... sum range is B8:O37



Here is my current formula... and its not working.. i dont know how to write the right formula that will give me the results i wanted.. thanks

(In Book1/sheet1 cell E7)

=SUMPRODUCT(('[Book2.xls]sheet1'!$B$7:$O$7=SUMPRODUCT(ISNUMBER(SEARCH("*"&Meal&"*",'[Book2.xls]sheet1'!$B$7:$O$7)*('[Book2.xls]Sheet1'!$A$8:$A$37=$A7)*('[Book2.xls]sheet1'!$B$8:$O$37)))))
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Please help. im trying to sumtotal all column(s) that contains text string "Meal" in col B7:O7 (Book2/sheet1) and (Book2/sheet1 Col A8:A37 that match with my row refence in Col A7 (Book1/sheet1).... sum range is B8:O37



Here is my current formula... and its not working.. i dont know how to write the right formula that will give me the results i wanted.. thanks

(In Book1/sheet1 cell E7)

=SUMPRODUCT(('[Book2.xls]sheet1'!$B$7:$O$7=SUMPRODUCT(ISNUMBER(SEARCH("*"&Meal&"*",'[Book2.xls]sheet1'!$B$7:$O$7)*('[Book2.xls]Sheet1'!$A$8:$A$37=$A7)*('[Book2.xls]sheet1'!$B$8:$O$37)))))
Control+shift+enter, not just enter:

Code:
=SUM(
   IF(ISNUMBER(SEARCH("Meal",'[Book2.xls]sheet1'!$B$7:$O$7)),
   IF('[Book2.xls]Sheet1'!$A$8:$A$37=$A7,
     '[Book2.xls]sheet1'!$B$8:$O$37)))
 
Upvote 0
Control+shift+enter, not just enter:

Code:
=SUM(
   IF(ISNUMBER(SEARCH("Meal",'[Book2.xls]sheet1'!$B$7:$O$7)),
   IF('[Book2.xls]Sheet1'!$A$8:$A$37=$A7,
     '[Book2.xls]sheet1'!$B$8:$O$37)))


Thanks for your quick reply bu it's not working the way it should be..
 
Upvote 0
it gives me "0" (zero) results...i think its not summing up the sumrange?? (Im not sure, i really dont know what's causes "0" result)

Did you apply control+shift+enter to the formula? That is: Press the control and shift keys down while you hit the enter key...
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,561
Members
449,089
Latest member
Motoracer88

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