This query pulls different vacation time calculations from a table and another query, and calculates items. As it is below it works just fine. Except, it displays each record for each employee, when all we want it to do is sum up the calculations for each employee, and then display the final result.
We Get:
EMPLOYEE: NUM1 | NUM2 | TOTAL3-SO-FAR
EMPLOYEE: NUM1 | NUM2 | TOTAL3-SO-FAR
EMPLOYEE: NUM1 | NUM2 | TOTAL3-SO-FAR
We Want:
EMPLOYEE: TOTAL1 | TOTAL2 | TOTAL3
SELECT tblEmployees.FullName, tblEmployees.PTOAmount, tblEmployees.CarryOverAmount, qryEmplyeesWithUsedPTO.DateUsed, qryEmplyeesWithUsedPTO.Hrs, qryEmplyeesWithUsedPTO.WTCode, qryEmplyeesWithUsedPTO.Description, tblEmployees.Supervisor, tblEmployees.EmpID AS LanID, tblFloat.Hours AS FloatHours, [tblEmployees.PTOAmount]+(Nz([tblEmployees.CarryOverAmount],0)+0)+(Nz([FloatHours],0)+0)-(Nz([qryEmplyeesWithUsedPTO.Hrs],0)+0) AS RemainingAmount
FROM (tblEmployees INNER JOIN qryEmplyeesWithUsedPTO ON tblEmployees.EmpID=qryEmplyeesWithUsedPTO.EmpID) LEFT JOIN tblFloat ON tblEmployees.EmpID=tblFloat.EmpID
WHERE tblFloat.Description=1
ORDER BY tblEmployees.FullName;
We Get:
EMPLOYEE: NUM1 | NUM2 | TOTAL3-SO-FAR
EMPLOYEE: NUM1 | NUM2 | TOTAL3-SO-FAR
EMPLOYEE: NUM1 | NUM2 | TOTAL3-SO-FAR
We Want:
EMPLOYEE: TOTAL1 | TOTAL2 | TOTAL3
SELECT tblEmployees.FullName, tblEmployees.PTOAmount, tblEmployees.CarryOverAmount, qryEmplyeesWithUsedPTO.DateUsed, qryEmplyeesWithUsedPTO.Hrs, qryEmplyeesWithUsedPTO.WTCode, qryEmplyeesWithUsedPTO.Description, tblEmployees.Supervisor, tblEmployees.EmpID AS LanID, tblFloat.Hours AS FloatHours, [tblEmployees.PTOAmount]+(Nz([tblEmployees.CarryOverAmount],0)+0)+(Nz([FloatHours],0)+0)-(Nz([qryEmplyeesWithUsedPTO.Hrs],0)+0) AS RemainingAmount
FROM (tblEmployees INNER JOIN qryEmplyeesWithUsedPTO ON tblEmployees.EmpID=qryEmplyeesWithUsedPTO.EmpID) LEFT JOIN tblFloat ON tblEmployees.EmpID=tblFloat.EmpID
WHERE tblFloat.Description=1
ORDER BY tblEmployees.FullName;