Sub DeleteDupeDates()
Dim Rng As Range, i As Long
Application.ScreenUpdating = False
LR = Cells(Rows.Count, 1).End(xlUp).Row
LC = Cells(1, Columns.Count).End(xlToLeft).Column + 1
'Range(Cells(1, LC), Cells(LR, LC)).Select
Range(Cells(1, LC), Cells(LR, LC)).Formula = "=INT(A1)"
Range(Cells(1, LC), Cells(LR, LC)).NumberFormat = "mm/dd/yy;@"
Set Rng = Range(Cells(1, LC), Cells(LR, LC))
'Cycle through helper column and Delete Duplicates
For i = Rng.Rows.Count To 1 Step -1
If Application.WorksheetFunction.CountIf(Rng, Cells(i, LC)) > 1 Then _
Rows(i).EntireRow.Delete
Next i
'Clear Helper Column of formulae
Range(Cells(1, LC), Cells(LR, LC)).ClearContents
Application.ScreenUpdating = True
End Sub