ETIME = DateDiff("n", [TIME_OPEN], Now())
If ETIME > 15 And ETIME < 30 Then
DoCmd.OpenForm "KYLE"
Else
If ETIME > 29 Then
DoCmd.Close
DoCmd.Close "KYLE"
DoCmd.OpenQuery "qryDeleteInfo"
End If
End If
End Sub
What I'm trying to do is, if ETIME is greater than 15 minutes but less that 30...