SUMPRODUCT

mcleod15

New Member
Joined
Feb 3, 2005
Messages
14
I am trying to sort out data from a database. The Data base has 10 columns and a lot of rows. Column heading are Customer, meter size, consumption, Consumption charges, etc. What I would like to know is how to find out how many customers have meter size "5/8" and consumption of 1 and so on. It eventually comes to the point where I need to know the number of customer with meter size 5/8 with consumtion between 20 and 30. Can sumproduct be used for this. Here is the formula I have used so far. =SUMPRODUCT(--($E$4:$E$12357="5/8"),--($J$4:$J$12357="1"))
E is meter size
J is consumption

Any help would be greatly appreciated. Thanks.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
hello, mcleod15,
would this work for you ?
Code:
=SUMPRODUCT(--($E$4:$E$12357="5/8"),--($J$4:$J$12357>=20),--($J$4:$J$12357<=30))

kind regards,
Erik
 
Upvote 0

Forum statistics

Threads
1,214,905
Messages
6,122,178
Members
449,071
Latest member
cdnMech

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