Thomas5000
MIS
I have a form and subform. They are both linked.
In the main form there is a combo box with departments. In the subform is a datasheet of employee related info such as vacation time, sick time, etc.
I want to use the combo box to display all the employees and their info in that department. Currently, when i change the combo box it changes the department all these employees are in. that is not what i want. The combo is supposed to be the navigational tool. When the department change the info in the subform changes.
Are there any online links for this? Also there is the typical recordset arrows at the bottom. Since the combo box will be the navigational instrument, i don't see a need for it.
I have a query in the subform Record Source:
SELECT Employee.SSN, Employee.HireDate, Employee.DepartmentID,
sum(sicktime.sicktime) AS Total_SickTime, sum(personaltime.personaltime) AS
Total_PersonalTime, sum(vacationtime.vacationtime) AS Total_VacationTime
FROM ((Employee INNER JOIN personaltime ON
personaltime.employeeid=employee.employeeid) INNER JOIN vacationtime ON
Employee.EmployeeID=vacationTime.EmployeeID) INNER JOIN SickTime ON
Employee.EmployeeID=SickTime.EmployeeID
WHERE employee.employed=true
GROUP BY employee.SSN, Employee.hiredate, Employee.DepartmentID;
In the main form i have this query:
the other query is found here.
SELECT department, departmentid
FROM Department
ORDER BY department;
They are linked through DepartmentID
Thanks!
In the main form there is a combo box with departments. In the subform is a datasheet of employee related info such as vacation time, sick time, etc.
I want to use the combo box to display all the employees and their info in that department. Currently, when i change the combo box it changes the department all these employees are in. that is not what i want. The combo is supposed to be the navigational tool. When the department change the info in the subform changes.
Are there any online links for this? Also there is the typical recordset arrows at the bottom. Since the combo box will be the navigational instrument, i don't see a need for it.
I have a query in the subform Record Source:
SELECT Employee.SSN, Employee.HireDate, Employee.DepartmentID,
sum(sicktime.sicktime) AS Total_SickTime, sum(personaltime.personaltime) AS
Total_PersonalTime, sum(vacationtime.vacationtime) AS Total_VacationTime
FROM ((Employee INNER JOIN personaltime ON
personaltime.employeeid=employee.employeeid) INNER JOIN vacationtime ON
Employee.EmployeeID=vacationTime.EmployeeID) INNER JOIN SickTime ON
Employee.EmployeeID=SickTime.EmployeeID
WHERE employee.employed=true
GROUP BY employee.SSN, Employee.hiredate, Employee.DepartmentID;
In the main form i have this query:
the other query is found here.
SELECT department, departmentid
FROM Department
ORDER BY department;
They are linked through DepartmentID
Thanks!