countifs

Chuck_Finnegan

New Member
Joined
Mar 23, 2011
Messages
5
Hello all

I have used a countifs formula =COUNTIFS('[IP Data Entry.xls]Battery Data'!$B:$B,B19,'[IP Data Entry.xls]Battery Data'!$M:$M,$B$5) excel 2010, however am unsure how I would be able to use this at work tomorrow when using excel 2003.

Is their anyway I will be able to use an array of some sort etc so this will work??
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
That will not work on Excel 2003. The function has become available with Excel 2007. Moreover, it won't work either if IP Data Entry.xls is closed.

Try instead an array-processing formula like:
Rich (BB code):
=SUMPRODUCT(
    --('[IP Data Entry.xls]Battery Data'!$B$2:$B$400=B19),
    --('[IP Data Entry.xls]Battery Data'!$M$2:$M$400=$B$5))

Also, as you can see, the whole column references are not allowed on 2003.
 
Upvote 0
Hello again

=SUMPRODUCT(--('[IP Data Entry.xls]Battery Data'!$B$2:$B$400=$B$19),--('[IP Data Entry.xls]Battery Data'!$M$2:$M$400=$B$5))

I have tried dragging this formula across from cell "B20:P20" and have changed $B$19 to B19 so it is no longer an absolute.. It is not showing the any results. I have tried breaking the formula down however am still stumped. (I am very new to excel.. so am still trying to learn the basics)

My apologies for coming back to this query

Thankyou
 
Upvote 0
Hello again

=SUMPRODUCT(--('[IP Data Entry.xls]Battery Data'!$B$2:$B$400=$B$19),--('[IP Data Entry.xls]Battery Data'!$M$2:$M$400=$B$5))

I have tried dragging this formula across from cell "B20:P20" and have changed $B$19 to B19 so it is no longer an absolute.. It is not showing the any results. I have tried breaking the formula down however am still stumped. (I am very new to excel.. so am still trying to learn the basics)

My apologies for coming back to this query

Thankyou

If this is B20, what must look like in C20?
 
Upvote 0
It should look like this (atleast this is how I worked it out to be);

=SUMPRODUCT(--('[IP Data Entry.xls]Battery Data'!$B$2:$B$400=C19),--('[IP Data Entry.xls]Battery Data'!$M$2:$M$400=$B$5))

Enter in B20 and copy across:

Rich (BB code):
=SUMPRODUCT(
    --('[IP Data Entry.xls]Battery Data'!$B$2:$B$400=B$19),
    --('[IP Data Entry.xls]Battery Data'!$M$2:$M$400=$B$5))



 
Upvote 0

Forum statistics

Threads
1,224,609
Messages
6,179,879
Members
452,949
Latest member
Dupuhini

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