Thanks for replying. For some reason the code was used like:
Code:
Sub Combo188_AfterUpdate()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[Cust #] = '" & Me![Combo188] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
This allows the user to input a cust#. If the number is not in the list it does nothing and all the data from the current record remainsL So if not paying attention changes can be made. Smh. So I need to change this to where if the record does not exist; a msgbox appears telling them the cust# doesn’t exist and make it so they cannot move on. Even possibly allow them to enter a new cust# by moving to a blank record and adding. I’m pretty sure I’ve done this before but not in a long time. Trying to remember.