R
Ralph Schwehr
I have a subform with 3 combo-boxes. The second combo-box populates based on
the selection of the first one by setting the rowsource to:
SELECT Res_Sales_Table.ID, Res_Sales_Table.Page
FROM Res_Sales_Table
WHERE
(((Res_Sales_Table.Book)=[Forms]![frmCompSalesApproach].[Form]![frmCompSalesApproach_Subform1]![cmbBook].[Text]));
However, when trying to populate the third combo-box based on the content of
the first and the second nothing will populate the 3rd combo-box. Here is the
rowsource of the 3rd combo:
SELECT Res_Sales_Table.ID, Res_Sales_Table.Parcel
FROM Res_Sales_Table
WHERE
(((Res_Sales_Table.Book)=[Forms]![frmCompSalesApproach].[Form]![frmCompSalesApproach_Subform1]![cmbBook].[Text])
AND
((Res_Sales_Table.Page)=[Forms]![frmCompSalesApproach].[Form]![frmCompSalesApproach_Subform1]![cmbPage].[Text]));
Any ideas what could cause this?
the selection of the first one by setting the rowsource to:
SELECT Res_Sales_Table.ID, Res_Sales_Table.Page
FROM Res_Sales_Table
WHERE
(((Res_Sales_Table.Book)=[Forms]![frmCompSalesApproach].[Form]![frmCompSalesApproach_Subform1]![cmbBook].[Text]));
However, when trying to populate the third combo-box based on the content of
the first and the second nothing will populate the 3rd combo-box. Here is the
rowsource of the 3rd combo:
SELECT Res_Sales_Table.ID, Res_Sales_Table.Parcel
FROM Res_Sales_Table
WHERE
(((Res_Sales_Table.Book)=[Forms]![frmCompSalesApproach].[Form]![frmCompSalesApproach_Subform1]![cmbBook].[Text])
AND
((Res_Sales_Table.Page)=[Forms]![frmCompSalesApproach].[Form]![frmCompSalesApproach_Subform1]![cmbPage].[Text]));
Any ideas what could cause this?