kentwoodjean
Technical User
Have viewed several FAQ's on this subject as well as other forums and although the selection from cboTeam provides the appropriate list of employees in cboEmployee, the navigation arrows at the bottom of the form do not allow me to move to a new form for a new employee. A subform is used to fill in employee scores by month. Below is the link I used to establish my combo boxes as well as my tables and raw source information. Any suggestions on what I should look for?
TblTeam
TeamID
Team
SELECT DISTINCTROW TblTeam.TeamID, TblTeam.Team FROM TblTeam;
cboTeam
1 bound column
2 column count
tbl_Employees
EmployeeID
Name
TeamID
SELECT DISTINCTROW tbl_Employees.EmployeeID, tbl_Employees.NAME FROM tbl_Employees WHERE (((Tbl_Employees.TeamID)=forms!PIOscorecard!cboTeam));
cboEmployee
1 bound column
2 column count
TblTeam
TeamID
Team
SELECT DISTINCTROW TblTeam.TeamID, TblTeam.Team FROM TblTeam;
cboTeam
1 bound column
2 column count
tbl_Employees
EmployeeID
Name
TeamID
SELECT DISTINCTROW tbl_Employees.EmployeeID, tbl_Employees.NAME FROM tbl_Employees WHERE (((Tbl_Employees.TeamID)=forms!PIOscorecard!cboTeam));
cboEmployee
1 bound column
2 column count