I have a combo box set up that when you pick the field, it pulls up information from other fields into text boxes. Here is my code:
Sub Combo66_AfterUpdate()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[ID] = " & Me![Combo66]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
I would like to have another combo box pull up information from another table, but I cannot get it to work right. I made an attempt and the only thing it did was reset the fields back to the first entry on all boxes. Is there a way to separate the tables so I can have two combo boxes?