I’m having a strange problem…I’m trying to add some students from an Excel file to my Student table. When I tried to Import them, I got a message saying that it couldn’t add them. So then I Imported them to it’s very own table. Then I tried doing an Append Query to add them to the Student table. That didn’t work. It said that I had validation violations. I looked at every field and there was no violation. (Make note that I have more fields in the Student table than in the Additions table–but that shouldn’t matter should it?) So finally I just opened both tables and managed to copy and paste the students into the Student table. But now when I go to my Student Form, I can’t access any of my students. It says “Run time error 3021 no current record”. When I click on the Debug button, it shows me the following code:
Sub Combo23_AfterUpdate()
‘ Find the record that matches the control.
Me.RecordsetClone.FindFirst “[StudID] = ‘” & Me![Combo23] & “‘”
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
Why am I getting this? Why am I having so much trouble appending?
****Okay, I solved the problem where I couldn’t see my students, but that still doesn’t solve my Append query problem.
*****Scratch that! I still can’t see my students! And it’s still because of that code above.