Good day everybody!
I'm currently desperately trying to link three tables together so I can filter everything.
I following three tables:
tblEmployees
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Name[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Kevin[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Arnold[/TD]
[/TR]
</tbody>[/TABLE]
tblPlan
[TABLE="width: 500"]
<tbody>[TR]
[TD]Date[/TD]
[TD]ID[/TD]
[TD]Action[/TD]
[/TR]
[TR]
[TD]01.01.2019[/TD]
[TD]1[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]02.01.2019[/TD]
[TD]1[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]03.01.2019[/TD]
[TD]1[/TD]
[TD]Ill[/TD]
[/TR]
</tbody>[/TABLE]
tblQualification
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Qualification[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Mount[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Drill[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Package[/TD]
[/TR]
</tbody>[/TABLE]
Both tblQualification and tblPlan are connected to tblEmployees via the ID.
Now I would like to investigate
How many employees I have per week or per day, who have the qualification "Mount" and are not registered as "ill".
Unfortunately, I always get the error message that there is no relationship. Probably because they are different dimensions, right?
Best Regards
I'm currently desperately trying to link three tables together so I can filter everything.
I following three tables:
tblEmployees
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Name[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Kevin[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Arnold[/TD]
[/TR]
</tbody>[/TABLE]
tblPlan
[TABLE="width: 500"]
<tbody>[TR]
[TD]Date[/TD]
[TD]ID[/TD]
[TD]Action[/TD]
[/TR]
[TR]
[TD]01.01.2019[/TD]
[TD]1[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]02.01.2019[/TD]
[TD]1[/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]03.01.2019[/TD]
[TD]1[/TD]
[TD]Ill[/TD]
[/TR]
</tbody>[/TABLE]
tblQualification
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Qualification[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Mount[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Drill[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Package[/TD]
[/TR]
</tbody>[/TABLE]
Both tblQualification and tblPlan are connected to tblEmployees via the ID.
Now I would like to investigate
How many employees I have per week or per day, who have the qualification "Mount" and are not registered as "ill".
Unfortunately, I always get the error message that there is no relationship. Probably because they are different dimensions, right?
Best Regards