I had difficulty in re-creating your problem, but the following code might work:
Use the 'On Format' event of your Report's detail section:
----------------------------------------------------------
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If IsNull(MyDate) = True Then
MyDate.Visible = False
Else
MyDate.Visible = True
End If
End Sub
----------------------------------------------------------