Hey guys, I've done some searching and seen a lot of questions regarding to dealing with duplicate data entries. Unfortunately, none of these other threads have answered my particular version of duplicate troubles.
Here is the situation, I am trying to determine the effectiveness of employees by measuring the average of client responses that fall in a quarter. In this case the employees can serve the same client multiple times in a year, and thus have multiple entries of feed back.
So I have written a query that looks at: Year: Employee ID: Average Numerical Score Assigned to Customer Feedback.
The problem, which I think might stem from the fact that an employee can get 5 feedback scores on the same day from a client, and this multiple times a year, is that I end up duplicate employee IDs.
Here is an example from the resulting table:
Year EmployeeID AvgOfFeedback
20132014 4538 3
20132014 4538 3
20132014 4538 1.5
20132014 4219 2
What I would like to do is figure out how to combine the data behind that average for employees like 4538, then have the average feedback score calculated.
It is also worth noting here that there were some null and negative numbers in the feedback that I am choosing to ignore. Hopefully (but I am not sure) I've accomplished this by setting the query criteria for the feedback to >0.
Here is the situation, I am trying to determine the effectiveness of employees by measuring the average of client responses that fall in a quarter. In this case the employees can serve the same client multiple times in a year, and thus have multiple entries of feed back.
So I have written a query that looks at: Year: Employee ID: Average Numerical Score Assigned to Customer Feedback.
The problem, which I think might stem from the fact that an employee can get 5 feedback scores on the same day from a client, and this multiple times a year, is that I end up duplicate employee IDs.
Here is an example from the resulting table:
Year EmployeeID AvgOfFeedback
20132014 4538 3
20132014 4538 3
20132014 4538 1.5
20132014 4219 2
What I would like to do is figure out how to combine the data behind that average for employees like 4538, then have the average feedback score calculated.
It is also worth noting here that there were some null and negative numbers in the feedback that I am choosing to ignore. Hopefully (but I am not sure) I've accomplished this by setting the query criteria for the feedback to >0.