I'm trying to use vba to check for a record then open a form with the that record showing. The problem I'm running into is that my IF/Then keeps skipping over the openform command even if it tests "TRUE." Here is the code I'm using
Any help would be appreciated. Thanks!
Code:
Private Sub ISBN_AfterUpdate()
Dim strFind As String
Dim rst As DAO.Recordset
strFind = "[ISBN13] =" & Nz(Me!ISBN, 0)
Set rst = CurrentDb.OpenRecordset("tblChecked")
If rst.EOF And rst.BOF Then
MsgBox "There are no records to check."
rst.Close
Set rst = Nothing
End If
Do While Not rst.EOF
If rst!ISBN13 = Me!ISBN Then
DoCmd.OpenForm "frmbookdetail", acNormal
Exit Do
End If
rst.MoveNext
Loop
End Sub
Any help would be appreciated. Thanks!