M
Mark B
'----------------------------------------------------
If dr("YesNoQuestion") = True And _
dr("StartDate") <= Now And _
dr("EndDate") >= Now Then
Return True
End If
'----------------------------------------------------
I am getting an error if StartDate or EndDate are Null.
What's the appropriate way to handle that here?
If dr("YesNoQuestion") = True And _
dr("StartDate") <= Now And _
dr("EndDate") >= Now Then
Return True
End If
'----------------------------------------------------
I am getting an error if StartDate or EndDate are Null.
What's the appropriate way to handle that here?