missing Date Finder

JG805

Board Regular
Joined
Dec 30, 2011
Messages
175
Hello is there a formula or a VBA code to find the missing Date. i have a column that i need to review every month to identify the dates that are missing. example is below. if the column was small as bellow i can identify that i am missing
12/3, 12,4--12/8 712,9. THANK YOU IN ADVANCE




[TABLE="width: 75"]
<tbody>[TR]
[TD] Date[/TD]
[/TR]
[TR]
[TD="align: right"]12/1/2018[/TD]
[/TR]
[TR]
[TD="align: right"]12/1/2018[/TD]
[/TR]
[TR]
[TD="align: right"]12/2/2018[/TD]
[/TR]
[TR]
[TD="align: right"]12/2/2018[/TD]
[/TR]
[TR]
[TD="align: right"]12/2/2018[/TD]
[/TR]
[TR]
[TD="align: right"]12/2/2018[/TD]
[/TR]
[TR]
[TD="align: right"]12/5/2018[/TD]
[/TR]
[TR]
[TD="align: right"]12/6/2018[/TD]
[/TR]
[TR]
[TD="align: right"]12/7/2018[/TD]
[/TR]
[TR]
[TD="align: right"]12/10/2018[/TD]
[/TR]
</tbody>[/TABLE]


JG805
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Control+shift+enter, not just enter, and copy down:

=IFERROR(SMALL(IF(ISNA(MATCH(ROW(INDIRECT(MIN($A$2:$A$11)&":"&MAX($A$2:$A$11))),$A$2:$A$11,0)),ROW(INDIRECT(MIN($A$2:$A$11)&":"&MAX($A$2:$A$11)))),ROWS($1:1)),"")
 
Upvote 0
thank you so much Aladin Akyurek this is exactly what i was looking for. thank you for your help.

JG805
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,175
Members
453,021
Latest member
Justyna P

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