Your formula in AC5 is
=SUMPRODUCT(($J$6:$J$100=AB5)*($N$6:$N$47=AC4))
I'm not quite sure what that formula is meant to be calculating. Was it meant to be
=SUMPRODUCT(($J$6:$J$100=$AB10)*($I$6:$I$100=AC$4))
If yes, then you could use COUNTIFS() which would be faster or you could even consider using a pivot table. I think a pivot table would be an extremely good option for this one.
The SUMPRODUCT function operates on arrays , and the first requirement is that the arrays be of the same size ; so having the first array ranging from row 6 through row 100 , while the second array ranges from row 6 through row 47 will not work.
Your formula in AC5 is
=SUMPRODUCT(($J$6:$J$100=AB5)*($N$6:$N$47=AC4))
I'm not quite sure what that formula is meant to be calculating. Was it meant to be
=SUMPRODUCT(($J$6:$J$100=$AB10)*($I$6:$I$100=AC$4))
If yes, then you could use COUNTIFS() which would be faster or you could even consider using a pivot table. I think a pivot table would be an extremely good option for this one.
The SUMPRODUCT function operates on arrays , and the first requirement is that the arrays be of the same size ; so having the first array ranging from row 6 through row 100 , while the second array ranges from row 6 through row 47 will not work.