I have a table called Employees/Skills that has the following fields: EmployeeID, SkillID, DateTrained. I have a report whose goal is to group and sort alphabetically by SkillDescriptio n (a field in the Skills table) and show the employees who have that skill and the date they were trained on that skill.
I created the expression following expression to sort and group by:
It is not doing what I want it to do... what am I doing wrong?
Thanks!
CB55
I created the expression following expression to sort and group by:
Code:
=DLookUp("SkillDescription","Skills","[Skills].[SkillID]=Reports![Test]![SkillID]")
Thanks!
CB55
Comment