You're better off using CountA for that...
[vba]Option Explicit
'
Sub Try()
With Sheets("Daily Call Report")
.Range("C8") = Application.CountA(Range("H1:H400"), "=17/05/2006") - 1
End With
End Sub[/VBA]