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;

04/02/2011
04/02/2011
04/02/2011
08/03/2011
14/03/2011
14/03/2011
14/03/2011
14/03/2011
14/03/2011
17/03/2011
17/03/2011
17/03/2011
17/03/2011

<tbody>
</tbody><colgroup><col></colgroup>

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
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
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:

Row LabelsCount of Date
14/03/20115
17/03/20114
4/2/20113
8/3/20111
Grand Total13

<tbody>
</tbody><colgroup><col><col></colgroup>
 
Upvote 0

Forum statistics

Threads
1,215,743
Messages
6,126,604
Members
449,321
Latest member
syzer

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