R
Richard
On my form I have a check box named "Called†when I click the box I have code
in the click event to move to the next record and this work great...
Private Sub Called_Click()
If Me.Called Then
If Me.Dirty Then Me.Dirty = False
DoCmd.GoToRecord , , acNext
End If
Me.Requery
End Sub
Question: when I open the form I would like it to go to the next record that
does not have a check in the "Called" Field. I don't want to hide the
checked records just start at the next unchecked record. I hope this makes
sense.
Richard
in the click event to move to the next record and this work great...
Private Sub Called_Click()
If Me.Called Then
If Me.Dirty Then Me.Dirty = False
DoCmd.GoToRecord , , acNext
End If
Me.Requery
End Sub
Question: when I open the form I would like it to go to the next record that
does not have a check in the "Called" Field. I don't want to hide the
checked records just start at the next unchecked record. I hope this makes
sense.
Richard