Excel SUMPRODUCT question

yanivp1

New Member
Joined
Oct 27, 2017
Messages
24
Need help please:


At cell P177 this function apears:
=SUMPRODUCT(SUBTOTAL(2,OFFSET(P8,ROW(P8:P162)-ROW(P8),0,1)),--(P8:P162=1))


At this situation the function summarize the total appearances of number 1 between cells P8 to P162.


Now I want to update the function, that it will summarize the total appearances of number 1 or 2 between cells P8 to P162.


Thanks a lot for your help.
Yaniv.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Try...

=SUMPRODUCT(SUBTOTAL(2,OFFSET(P8,ROW(P8:P162)-ROW(P8),0,1)),(P8:P162=1)+(P8:P162=2))

However, the following is more efficient...

=SUMPRODUCT(SUBTOTAL(2,OFFSET(P8,ROW(P8:P162)-ROW(P8),0,1)),--ISNUMBER(MATCH(P8:P162,{1,2},0)))

Hope this helps!
 
Upvote 0
Try...

=SUMPRODUCT(SUBTOTAL(2,OFFSET(P8,ROW(P8:P162)-ROW(P8),0,1)),(P8:P162=1)+(P8:P162=2))

However, the following is more efficient...

=SUMPRODUCT(SUBTOTAL(2,OFFSET(P8,ROW(P8:P162)-ROW(P8),0,1)),--ISNUMBER(MATCH(P8:P162,{1,2},0)))

Hope this helps!

Thanks a lot, friend. It helped!
 
Upvote 0

Forum statistics

Threads
1,215,012
Messages
6,122,682
Members
449,091
Latest member
peppernaut

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