I have a table called "StudentInformation" that has studentid,firstname,lastname,teacherid and a second table called "LockerInformation" with location,type,number, and studentID. I have a form with 3 cascading combo boxes that currently works. The top level is location then type then number. I have a parameter query that i tied to each of the combo boxes and it returns a studentID if it exists in the table "LockerInformation" and allows me to input a studentID if it doesn't. I can't get my form to reflect this. I have tried a text box and a combo box but can't get a dlookup statement to work. I need it to look up the three values "Location", "Type", and "Number" from the "LockerInformation" table then return the student ID value. If the end user can see that it is blank then no student is assigned to the locker. In this case they would have the option of entering the studentID in the field. I would also like to display the student name in a seperate text box for accuracy of the end user. The name would be displayed "lastname,firstname"