I'm fairly new to access and i'm not sure how to do what i want but this is it...
I have revenue values that employees are credited with and my company creates a ranking report for them. What i need to do is take a record which is similar to this:
Date Employee Office Loan Amt Fees Loan Type
5/5/2007 Smith, John H-burg 100000 325 2
I need to get the following values:
Sum of all Loan Amts
Sum of all Loan Amts for each employee
Sum of all Fees
Sum of all Fees for each employee
Loan Types 1&3 have a value of 1 Loan Types 2&4 have a value of .5. I need the total of all those values and the total of each employee.
Then I need to normalize the data by percentage meaning:
Sum of John Smith Loan Amt/Total Loan Amt
Sum of John Smith Fees/Total Fees
Sum of John Smith Loan Types/Total Loan Types
Then I need to Calculate a weighted average of the percentages for each employee with the weights of:
Loan Amt (.5)
Fees (.4)
Loan Types (.1)
Then List the employees with all the data in a ranked order from highest to lowest.
The Employees need to be read from an employee table because i need to include all employees even if they were not entered as having a loan.
I have revenue values that employees are credited with and my company creates a ranking report for them. What i need to do is take a record which is similar to this:
Date Employee Office Loan Amt Fees Loan Type
5/5/2007 Smith, John H-burg 100000 325 2
I need to get the following values:
Sum of all Loan Amts
Sum of all Loan Amts for each employee
Sum of all Fees
Sum of all Fees for each employee
Loan Types 1&3 have a value of 1 Loan Types 2&4 have a value of .5. I need the total of all those values and the total of each employee.
Then I need to normalize the data by percentage meaning:
Sum of John Smith Loan Amt/Total Loan Amt
Sum of John Smith Fees/Total Fees
Sum of John Smith Loan Types/Total Loan Types
Then I need to Calculate a weighted average of the percentages for each employee with the weights of:
Loan Amt (.5)
Fees (.4)
Loan Types (.1)
Then List the employees with all the data in a ranked order from highest to lowest.
The Employees need to be read from an employee table because i need to include all employees even if they were not entered as having a loan.