I am abit confused. I have a table with a field called family. I also have a form based on the table which uses the field. I created a combo box to search for the family name which I have a paramenter box come up and ask for the family In the results I display tow fields the name and id. on the after update i have a macro set up to search for record. on the condition line I have "[id] = " & Str(Nz([Screen].[ActiveControl],0)) which when I click on the name in the search box it does not move to that record. It does not matter if I select the family or id field. I have used this in another databse and works fine. Here is the what i am selecting as a row source. I also tried make a query to pull the name and id and refernce that which didn;t also seem to work. Any suggestions
SELECT FOUND11.FAMILY, FOUND11.id, *
FROM FOUND11
WHERE (((FOUND11.FAMILY)=[Family Name]));