I have two tables with many column's of data. I successfuly created a query that inner joins the two and asks me the name of the customer that I would like to see packed items for. I can enter part of the customers name and it will search for all of the items that were shipped to that customer and display them on the screen with all of the data from both tables. My problem is that I want to fancy this process up. I want to make a combo box that displays available customer names in a drop down box. This combo box should populate it self from customer names in the database. The same combo box should also have the ability to autocomplete when the user starts typing. After the customer name has been selected, I want a second combo box to display available pack dates for that particular customer. The user can choose a pack date in the combo box and then press enter (or a button) to trigger the query report. So far; I've been able to make a form with an autocomplete combo box that lists each of the customer names in it. I had to use the distinct feature becuase some of the customers have 100's of entries (100's of items). I dont know where to go from here. Any idea's. I was starting to wonder if this should be created all in a form or all in a query ......maybe both. I am new to this.