Set the combo's RowSource like this:
SELECT NameID, BadgeNum
FROM tblEmployee
ORDER BY BadgeNum;
Other properties:
Control Source: SupervisorID
Row Source Type: Table/Query
Bound Column: 1
Column Count: 2
Column Widths: 0

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
>I have a form that allows the input of personell and their
> supervisor. I use the same table for both the supervisor and employee
[quoted text clipped - 12 lines]
> WorkNum Text
> SupervisorID Number (should equal nameID of supervisor)
NeoFax - 12 Mar 2008 19:29 GMT
On Mar 12, 11:33 am, "Allen Browne" <AllenBro...@SeeSig.Invalid>
wrote:
> Set the combo's RowSource like this:
> SELECT NameID, BadgeNum
[quoted text clipped - 31 lines]
>
> - Show quoted text -
Thanks!