Using my table EMPLOYEE from the earlier post, this SQL should give you the Supervisor info for the combo on your new form.
This would be the rowsource of the Combobox.
Code:
SELECT Employee.IsSuper
, Employee.FName
, Employee.LName
, Employee.EmpId
FROM Employee
WHERE (((Employee.IsSuper)=True))
ORDER BY Lname;
You can adjust the code to use your Tablename instead of Employee,
and your field names. The Order By is not required necessarily unless you want the Supervisor info in a specific order.
Hope this helps.