IF/Then issue

LewisWA02

Registered User.
Local time
Today, 04:49
Joined
Mar 29, 2011
Messages
27
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

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!
 
I set a breakpoint and stepped through the code. When it gets to the IF/Then statement, I hovered over "If rst!ISBN13 = Me!ISBN Then". It shows that rst!ISBN13 = 1234567891235 and that Me!ISBN = 1234567891235.
 
Have you checked the existace and spelling of "frmbookdetail"
 
I went back and stepped through it a fiftieth time, and found something I missed.
When I hovered over the code it ACTUALLY states:
rst!ISBN13 = 1234567891235 and that Me!ISBN = "1234567891235"
The quotes meant that the two values weren't dimensioned the same. So I changed the code to this:
Code:
Private Sub ISBN_AfterUpdate()
Dim strFind As String
Dim numISBN As Double
Dim rst As DAO.Recordset
numISBN = Me!ISBN
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) = numISBN Then
    DoCmd.OpenForm "frmbookdetail", acNormal, , stFind
    Exit Do
End If
    rst.MoveNext
Loop
 
End Sub

And now it works fine. Thanks for your consideration of my post.
 
So many issues in such short space ....

1. That you SEE something on screen that LOOKS like something else, is no proof of anything. Amd Access apparently disagrees with you vision. Strings can have spaces here and there. Did your code step into the condition or not? That is the proof.

2. Your entire code is weird. If MeI!IBSN is NULL - why bother with all the rest?

3. WHy do you not check for Me!ISBN="" ( - it could be zero-length string)

4. Instead of opening the full recordset put a query with appropriate WHERE , instead of tablename, into your OPenRecordset. Then you either get the wanted record - just one - or not.

5. To find whether a given value exists in a recordset or not, the least efficient thing to do is to loop through the records and check each and one. This is why you have the .FindFirst method

6. But why a recordset in the first place? All this is served to you on a platter in one line: the DCount function. If it returns >0 then you do have the sought-after record. Or else not.
 
I had tried a few other ways, but it would only return a blank page if the number wasn't found. I was unable to get it to move to a message box in the event that no record existed. This method does what I wanted it to do, I just kept missing the quotes around the value. Thanks though.
 
Here's three more!
1. The code will fail if the recordset is empty. If you're going to close the recordset in one if statement, you need to exit the procedure there because the following If expects the recordset to still exist.
2. ISBN should probably be text but if you make it a number, make it a long. It doesn't have any decimal places so it shouldn't be a double.
3. You are setting the value of strFind outside of the loop. What if you want something other than the first record (not that this should be a loop anyway as spikepl already pointed out).
 

Users who are viewing this thread

Back
Top Bottom