Background: Frontend- MS Access 2010/VBA Backend- MS SQL Server 2008
DB02001 Table (Parent)
SupplierID int (primary key)
Supplier varchar(50)
.
.
DB02003 Table (Child)
EvalID int (primary key)
SupplierID int (points back to DB02001 table)
Status varchar(8)
EvalDate datetime
.
.
I am trying to get a query to work but no such luck. On a unbound form I have a combo box labeled Supplier that reads all suppliers and provides a drop down list to pick from. It uses the DB02001 table and displays Supplier . This works.
I have a query that that selects EvalID, SupplierID, Status and EvalDate from the DB02003 table. What I would like to do is pick all suppliers from the combo box field and display them in the query. This is where I need help.
Supplier Acme Supply v
EvalID SupplierID Status EvalDate
1 15 Complete 7/15/2014
4 15 Due 10/15/2014
Thanks in advance.
DB02001 Table (Parent)
SupplierID int (primary key)
Supplier varchar(50)
.
.
DB02003 Table (Child)
EvalID int (primary key)
SupplierID int (points back to DB02001 table)
Status varchar(8)
EvalDate datetime
.
.
I am trying to get a query to work but no such luck. On a unbound form I have a combo box labeled Supplier that reads all suppliers and provides a drop down list to pick from. It uses the DB02001 table and displays Supplier . This works.
I have a query that that selects EvalID, SupplierID, Status and EvalDate from the DB02003 table. What I would like to do is pick all suppliers from the combo box field and display them in the query. This is where I need help.
Supplier Acme Supply v
EvalID SupplierID Status EvalDate
1 15 Complete 7/15/2014
4 15 Due 10/15/2014
Thanks in advance.
Comment