Hi,
I have a table of employees (TblEmployees). I use their ID key to link to whom they supervise
EmployeeIDName SupervisorIDSupervisorName
1 John 2 Peter
2 Peter
3 Kim 1 John
In my querry (ActiveEmployees), instead of SupervisorID, I would like to have the green SupervisorName column. I don't get how to create a relationship within a table, so I tried something like
but got an error.
Any idea?
I have a table of employees (TblEmployees). I use their ID key to link to whom they supervise
EmployeeIDName SupervisorIDSupervisorName
1 John 2 Peter
2 Peter
3 Kim 1 John
In my querry (ActiveEmployees), instead of SupervisorID, I would like to have the green SupervisorName column. I don't get how to create a relationship within a table, so I tried something like
Code:
expression:dlookup([TblEmployees]![Name],[TblEmployees]![EmployeeID],[ActiveEmployees]![SupervisorID])
Any idea?
Last edited: