max out SUMPRODUCT

dkubiak

Board Regular
Joined
May 17, 2004
Messages
137
Office Version
  1. 2013
Platform
  1. Windows
These seems to a limit on the number of rows that SUMPRODUCT will consider. I have 317,706 rows, and I just get an #N/A response when I try to use all those rows:

=SUMPRODUCT(--(R2:R317706=AJ2),--(M2:M317706=AK1))

Am I doing something wrong?
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Works for me..

Are there any #N/A errors within either of the referenced ranges (column R or M) ?
 
Upvote 0
That was it. A couple of VLOOKUPs were returning #N/A in column R. Thank you for your help.
 
Upvote 0
That was it. A couple of VLOOKUPs were returning #N/A in column R. Thank you for your help.
Since you're doing straight comparisons on a huge range the COUNTIFS function will be more efficient (and, it will ignore any error values in the ranges).

=COUNTIFS(R2:R317706,AJ2,M2:M317706,AK1)
 
Upvote 0
Thank you for the advice on the COUNTIFS.

I'll use that going forward.
 
Upvote 0

Forum statistics

Threads
1,224,564
Messages
6,179,543
Members
452,924
Latest member
JackiG

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