Sub TestSub()
Dim i As Range
Set i = Range("A1", Range("A65536").End(xlUp))
For Each cell In i
If cell.Value = Date Then cell.Rows.EntireRow.Copy Sheets("B").[A65536].End(xlUp)(2, 1)
Next cell
Sheets("B").Select
Set i = Range("A1", Range("A65536").End(xlUp))
With i.Rows.EntireRow
.FormatConditions.Delete
.FormatConditions.Add Type:=xlExpression, Formula1:="=MOD(ROW(),2)=0"
.FormatConditions(1).Interior.ColorIndex = 15
End With
End Sub