ok, What I was trying to get at is that you don't want to be filtering on the value of the name - what if two employees have the same name? You should be filtering on the key value. So in a normal combo box, the first column would hold the employee's primary key, and the second column would hold the name. When an item was selected, you would take the primary key value and use that to filter on. So I was asking about your SQL to try to find out the name of the field that is the primary key for the employee. I am not seeing it in what you posted, but in any case your where clause should be WHERE [NAME OF PRIMARY KEY FIELD] = Forms!YourForm!YourComboBox.