SUMPRODUCT formula wont work!

charliew

Board Regular
Joined
Feb 20, 2018
Messages
68
Office Version
  1. 365
Platform
  1. Windows
Hi there,

I have been trying to sumproduct how many inquiries sales rep CS has sent through on each day... my formula,

=SUMPRODUCT($B$2:$B$1000="Ext")*($I$2:$I$1000="CS")*(INT($F$2:$F$1000)=AB63)

doesn't work and is only returning a "0" value,

I basically need it to search coloumn B for Ext, then search for CS, then search for the specific date then count how many Ext CS has sent through for the corresponding date! The integer is because the search array has date and time and the AB63 is just the date

any help greatly appreciated!!

Thank you
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
You are missing some brackets.

=SUMPRODUCT(($B$2:$B$1000="Ext")*($I$2:$I$1000="CS")*(INT($F$2:$F$1000)=AB63))
 
Upvote 0
Please help!!

Why doesn't this work:

=SUMPRODUCT((BM2:BM500="1")*($BF$2:$BF$10000="1")*($B$2:$B$10000="Ext")*($BS$2:$BS$10000=BU3))

it's giving me a #NA ! error, and i cant figure out why!!!
 
Upvote 0
=SUMPRODUCT((BM2:BM500="1")*($BF$2:$BF$10000="1")*($B$2:$B$10000="Ext")*($BS$2:$BS$10000=BU3))

Hi, all of the ranges need to be of the same size. i.e. try changing that 500 to 10000.

Is there a reason why you are not using the more efficient COUNTIFS() formula. i.e.

=COUNTIFS(BM2:BM10000,"1",BF2:BF10000,"1",B2:B10000,"Ext",BS2:BS10000,BU3)
 
Upvote 0
Hi, all of the ranges need to be of the same size. i.e. try changing that 500 to 10000.

Is there a reason why you are not using the more efficient COUNTIFS() formula. i.e.

=COUNTIFS(BM2:BM10000,"1",BF2:BF10000,"1",B2:B10000,"Ext",BS2:BS10000,BU3)


Changing the range didn't work :( using sumproduct because the countif kept coming up with an error saying i had entered too many arguments :(
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,479
Members
448,967
Latest member
visheshkotha

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