Myriad_Rocker
Questioning Reality
- Local time
- Today, 09:18
- Joined
- Mar 26, 2004
- Messages
- 166
I've searched on this and I found something that worked but it didn't put the actual text in the combo box automatically. I have a combo box that looks at an ID...but I want to also have another combo box that will display the name associated with that ID without me having to choose it too. It's a one to one relationship so there aren't multiple records with that particular ID.
Here is the Row Source I was using...but it just populated the drop down...
SELECT tblDepartmentTask.DepartmentID, tblDepartmentTask.Department, tblDepartmentTask.Task, tblDepartmentTask.TaskID FROM tblDepartmentTask WHERE (((tblDepartmentTask.DepartmentID)=Forms!Form1!Combo0));
Here is the Row Source I was using...but it just populated the drop down...
SELECT tblDepartmentTask.DepartmentID, tblDepartmentTask.Department, tblDepartmentTask.Task, tblDepartmentTask.TaskID FROM tblDepartmentTask WHERE (((tblDepartmentTask.DepartmentID)=Forms!Form1!Combo0));