count the number of times a date is shown.

brianflieck

New Member
Joined
May 4, 2016
Messages
8
i have a list of files with dates associated. i'd like to simply count the number of times each date is being shown.

for example, 1/2/18 is shown below 10 times. I have this for an entire calendar year.

[TABLE="width: 208"]
<colgroup><col></colgroup><tbody>[TR]
[TD="align: right"]1/2/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/2/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/2/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/2/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/2/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/2/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/2/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/2/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/2/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/2/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
[TR]
[TD="align: right"]1/3/18[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Employ the countif function. If you have your list in column A and a list of the calendar dates in column E, then in column B

=COUNTIF($A$1:$A$33,E1) and copy down.

If you wish to put the dates in manually then,

=COUNTIF($A$1:$A$33,"1/2/2018")
 
Upvote 0

Forum statistics

Threads
1,223,703
Messages
6,173,973
Members
452,540
Latest member
haasro02

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