Data Hierarchy

anirbas

New Member
Joined
Jul 23, 2015
Messages
3
Hello,

I have a database that manages employee training and documents. As part of my data structure, employees are assigned a job function which contains a set of procedures they are required to train on. Each employee may be assigned many job functions (there is the company core, department core, and specific job details). Some of the job functions may have overlap of procedures.

I would like to be able to run a report that compares the employee current progress against the job functions they have been assigned, but only show each requirement once even if it appears multiple times.

The tables involved in this are:

tblEmployee
EmployeeID
FirstName
LastName

tblJobDetail
ID
JobID
ProcedureID
TargetProf

tblJob
JobID
JobTitle
Dept

tblITR
ID
JobID
EmplyeeID

All help is appreciated. Thank you!
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
1. you will need an outer join to show ALL Job functions and join to the employee to show what they have done.
2. sometimes setting the query property UNIQUE VALUES = YES will stop duplicates. but it depends on the query.
 
Upvote 0
Unique values won't help me here because they are all unique - they are tied to different Jobs. I would like a list that shows each procedure only once even if it has been assigned to an employee 10 different times.
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,257
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top