I have two tables. I made a form where the person types in an ID number for an instance. I want the form to look in the one table and pull the information that goes with the ID entered by the user. The user should be able to open the form and type an ID in, then the statement =DLookUp("[EventDesc]","[tblEvent]","[EventID] = Form![txtID1]"
that I put in the control source of the text field pulls information into that field. The statement works if I set the ID default value to one of the ID's in the table but that's not very helpful. Then if there is no default value and I enter a value into the form, the text box with the lookup statement doesn't do anything, the field stays blank. Is there a way I can get the text field to lookup the information after the user types in an ID?