Converting CountIf to SumProduct

mmontgomery

New Member
Joined
Aug 6, 2019
Messages
1
Hello! I have looked up and tried every link and suggestions already on line that I could. Unfortunately, I'm still having trouble converting a CountIf function to SumProduct. I'm doing this because I need to link my CountIf to a closed worksheet.

My original CountIf function:
COUNTIFS(FileName!$A:$A,"71662",FileName!$M:$M,">=4366",FileName!$E:$E,"="&E$3

SumProduct not working function:
SUMPRODUCT(FileName!$A2:$A1000="71662")*(FileName!$M2:$M1000>="43466")*(FileName!$E2:$E100=E$3)

Any suggestions 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
Welcome to the Board!

Try taking the numbers out of quotes. Quotes mean literal text, not number (so unless it is actually a numeric string, lose the quotes).
Try:
Code:
[COLOR=#333333]=SUMPRODUCT((FileName!$A2:$A1000=71662)*(FileName!$M2:$M1000>=43466)*(FileName!$E2:$E1000=E$3))[/COLOR]
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,855
Members
449,096
Latest member
Erald

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