The rowsource property for the combo box is
SELECT TblEmployee.EmpId, TblEmployee.EmpName, TblEmployee.Role FROM TblEmployee ORDER BY [EmpName];
and column width is 0";2";0"
So "TblEmployee.Role" is a number? Is it referenced by any other controls or code? If not then you could change the row source for the combo box .
Add the table "tblRole" to the SQL (linked PK to FK), delete the column "TblEmployee.Role", add a column for "tblRole.RoleName".
Something like
Code:
SELECT TblEmployee.EmpId, TblEmployee.EmpName, TblRole.RoleName
FROM tblRole INNER JOIN TblEmployee ON tblRole.RoleID_PK = TblEmployee.Role_FK
ORDER BY [EmpName]
I always name my PK and FK field with a suffix ... change the names as required. Keeps me from getting confused (most of the time
)
Shouldn't need any other changes.