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

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
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,225,624
Messages
6,186,068
Members
453,336
Latest member
Excelnoob223

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