Counting Dates

mike&jess

New Member
Joined
Aug 3, 2012
Messages
7
Hello Fellow Excellers!

We are trying to create a table with the number of occurances of a date.
We have a VERY long list of project dates (approx 3000), all in date order for each project, not necesarily in numerical order, and a lot of them repeated.
We would like to filter out what dates are in the list, and the occurance of each date; to then be tallied.
For Example;

[TABLE="width: 87"]
<tbody>[TR]
[TD]04/02/2011[/TD]
[/TR]
[TR]
[TD]04/02/2011[/TD]
[/TR]
[TR]
[TD]04/02/2011[/TD]
[/TR]
[TR]
[TD]08/03/2011[/TD]
[/TR]
[TR]
[TD]14/03/2011[/TD]
[/TR]
[TR]
[TD]14/03/2011[/TD]
[/TR]
[TR]
[TD]14/03/2011[/TD]
[/TR]
[TR]
[TD]14/03/2011[/TD]
[/TR]
[TR]
[TD]14/03/2011[/TD]
[/TR]
[TR]
[TD]17/03/2011[/TD]
[/TR]
[TR]
[TD]17/03/2011[/TD]
[/TR]
[TR]
[TD]17/03/2011[/TD]
[/TR]
[TR]
[TD]17/03/2011[/TD]
[/TR]
</tbody><colgroup><col></colgroup>[/TABLE]

As there are so many dates, we do not know how many of each are occuring ect, we just have the dates themselves! We don't want to use VBA either please!

Thanks Peeps
 
Copy all the dates and find the unique list first:

Excel 2007 & 2010: Data tab > remove duplicates
Excel 2003: Data > Filter > Advanced Filter

Then once you have your unique list use a COUNTIF formula.

E.G.

=COUNTIF(RangeOfOriginalDates,UniqueDate)
=COUNTIF(A1:A1000,C1)

This will count how many times it finds the date in cell C1 from your original list (A1:A1000) for example.
 
Upvote 0
You can use a pivot Table. It will give you results like:

[TABLE="width: 185"]
<tbody>[TR]
[TD]Row Labels[/TD]
[TD]Count of Date[/TD]
[/TR]
[TR]
[TD]14/03/2011[/TD]
[TD="align: right"]5[/TD]
[/TR]
[TR]
[TD]17/03/2011[/TD]
[TD="align: right"]4[/TD]
[/TR]
[TR]
[TD]4/2/2011[/TD]
[TD="align: right"]3[/TD]
[/TR]
[TR]
[TD]8/3/2011[/TD]
[TD="align: right"]1[/TD]
[/TR]
[TR]
[TD]Grand Total[/TD]
[TD="align: right"]13[/TD]
[/TR]
</tbody><colgroup><col><col></colgroup>[/TABLE]
 
Upvote 0

Forum statistics

Threads
1,226,892
Messages
6,193,538
Members
453,806
Latest member
Gene Michaels

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