Multiple Countifs with date complication

LRA User

New Member
Joined
Jul 8, 2009
Messages
25
I want to count the number of occurences involving 3 columns of a spreadsheet, but one of the columns is a date/time field, and I only want to analyse the date.

Example:

A B C
John 1 02/07/2009 09:45:10
Peter 1 03/06/2009 10:14:12
Fred 1
Peter
John 1 02/07/2009 09:45:10

How can I ask how many occurences of John are in column A, with a 1 in column B, with the date 02/07/2009?
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Hello and welcome to the board,

try this
Excel Workbook
ABCDEFGH
1ABC
2John102-Jul-0909:45John102-Jul-092
3Peter103-Jun-0910:14
4Fred1
5Peter
6John102-Jul-0909:45
Sheet2
Cell Formulas
RangeFormula
H2=SUMPRODUCT(--($A$2:$A$6=E2),--($B$2:$B$6=F2),--(INT($C$2:$C$6)=G2))
 
Upvote 0
Thanks sanrv1f!

Forgot to say a really vital part of the problem - I need the answer to be on a separate worksheet. Where would I put in the reference for that tab?
 
Upvote 0
just reproduce the sample solution into a new worksheet, cut and paste either the data part(A1:C6) or the result part(E2:H2) to another sheet, now you will get the reference to the other sheet in the formula
 
Upvote 0
I have a column which lists dates - how do I count the number between 2 dates, ie the month of August 08 would look for the dates between 1st August and 31st August 08.
 
Upvote 0
One way:

=COUNTIF(A1:A100,">="&DATE(2008,8,1))-COUNTIF(A1:A100,">"&DATE(2008,8,31))
 
Upvote 0
Thanks for everyone who is helping me with this spreadsheet - but its just got more complex. As well as the date selection which I now have working, I'm interrogating another column for occurences of the number 1. Here's my formula but I'm getting negative numbers.

=COUNTIF('Data Dump'!$J$2:$J$6000,">="&DATE(2008,7,1))-COUNTIF('Data Dump'!$J$2:$J$6000,">"&DATE(2008,7,31))-COUNTIF('Data Dump'!$O$2:$O$6000, 1)
 
Upvote 0
How do you want to handle the added condition of column O=1?

=COUNTIF('Data Dump'!$J$2:$J$6000,">="&DATE(2008,7,1))-COUNTIF('Data Dump'!$J$2:$J$6000,">"&DATE(2008,7,31))-COUNTIF('Data Dump'!$O$2:$O$6000, 1)
What your formula is doing is getting the total count of dates and then subtracting the total count of 1s. Is that what you want?

Or, do you want to count where the date is within the range *and* there is a 1 *on the same row* ?
 
Upvote 0
Try this:

=SUMPRODUCT(--('Data Dump'!$J$2:$J$6000>=DATE(2008,7,1)),--('Data Dump'!$J$2:$J$6000<=DATE(2008,7,31)),--('Data Dump'$O$2:$O$6000=1))

Better to use cells to hold the criteria:

A1 = 7/1/008
B1 = 7/31/2008
C1 = 1

=SUMPRODUCT(--('Data Dump'!$J$2:$J$6000>=A1),--('Data Dump'!$J$2:$J$6000<=B1),--('Data Dump'!$O$2:$O$6000=C1))
 
Upvote 0

Forum statistics

Threads
1,216,165
Messages
6,129,242
Members
449,496
Latest member
Patupaiarehe

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