Hi,
So, What you want is a “bound search form”?
Use the AfterUpdate event to change the Form’s RecordSource property.
Me.RecordSource = “Select ID, Apples, Banana From Table1 Where ID = “ & Me.ID
Assumed ID is number, if text, change to Where ID = ‘” & Me.ID & “’”
Note the single quotes.
Or...