A
ace
Urgent reply needed!
I am trying to implement cascading combo box where selection in one combo
box determines the selections in another combo box. I can see the selections
in the first combo box. When I make the selection, I see nothing in the other
combo box! It is suppose to list the items based on the selection from the
first combo box.
Please let me know if you have any general tips and/or look at the details
of the setup below and let me know what the problem might be!
Thanks,
AC Erdal
Application is real estate. There are two primary tables “Property†and
Transactionâ€. Here is a summary of fields for both tables;
Property Transaction
ID-Properties ID-Transaction
Property Address Transaction Status
ID-Properties
Other table is the PropertyStatus
1 all
2 listed
3 active
4 pending
5 closed
On a form (Project Details-project), I created two combo boxes;
cboTransactionStatus
control source: unbound
row source: SELECT tblPropertyStatus.Status FROM tblPropertyStatus;
and,
cboPropertyFilter
control source: =[Properties]![ID-Properties] «Expr» [Properties]![Property
Address]
row source: SELECT Transaction.[Transaction Status], Properties.[Property
Address], Properties.[ID-Properties] FROM Properties INNER JOIN [Transaction]
ON Properties.[ID-Properties]=Transaction.[ID-Properties] WHERE
(((Transaction.[Transaction Status])=[Forms]![Project
Details-project]![cboTransactionStatus]));
I am trying to implement cascading combo box where selection in one combo
box determines the selections in another combo box. I can see the selections
in the first combo box. When I make the selection, I see nothing in the other
combo box! It is suppose to list the items based on the selection from the
first combo box.
Please let me know if you have any general tips and/or look at the details
of the setup below and let me know what the problem might be!
Thanks,
AC Erdal
Application is real estate. There are two primary tables “Property†and
Transactionâ€. Here is a summary of fields for both tables;
Property Transaction
ID-Properties ID-Transaction
Property Address Transaction Status
ID-Properties
Other table is the PropertyStatus
1 all
2 listed
3 active
4 pending
5 closed
On a form (Project Details-project), I created two combo boxes;
cboTransactionStatus
control source: unbound
row source: SELECT tblPropertyStatus.Status FROM tblPropertyStatus;
and,
cboPropertyFilter
control source: =[Properties]![ID-Properties] «Expr» [Properties]![Property
Address]
row source: SELECT Transaction.[Transaction Status], Properties.[Property
Address], Properties.[ID-Properties] FROM Properties INNER JOIN [Transaction]
ON Properties.[ID-Properties]=Transaction.[ID-Properties] WHERE
(((Transaction.[Transaction Status])=[Forms]![Project
Details-project]![cboTransactionStatus]));