Sumproduct not sumproducting!

skitsoni

New Member
Joined
Oct 29, 2010
Messages
6
I want to reference the number of times a dept number is listed (on an adjacent tab) by its variable "CIP" and return that count on the current tab.

The below formula is my attempt but it returns "0" (even when entered as an array)

=SUMPRODUCT(IF(BA04_Emps!$C$2:$C$132=A45,IF(BA04_Emps!$F$2:$F$132="CIP",)))

Much appreciation for any help on this!
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Try

=SUMPRODUCT(--(BA04_Emps!$C$2:$C$132=A45),--(BA04_Emps!$F$2:$F$132="CIP"))
 
Upvote 0
Thanks for the quick reponse but still returning "0". I see where you made the adjustment and I think it's pretty close at this point.
 
Upvote 0
It's on a sheet called "CIP Report" which is the same sheet where I would like to return the answer (column Q)

Thanks,
SK
 
Upvote 0
Maybe:
=CountIf(BA04_Emps!$F$2:$F$132="CIP")

(?)

Otherwise, explain what's in these ranges (I'm not sure why column C and column F are both involved here, or what's in A45):
BA04_Emps!$C$2:$C$132
BA04_Emps!$F$2:$F$132
'CIP Report'!A45
 
Upvote 0

Forum statistics

Threads
1,224,560
Messages
6,179,519
Members
452,921
Latest member
BBQKING

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