Combo Box - Ability to select All

G

Guest

Is there a way to have a combo box include a selection in the drop down that
will display "all". I use the combo box selection to populate the criteria
of a query. Below is the sql for the query:

SELECT tblClientDetail.ClntDetID, tblClient.GroupName, tblClientDetail.Fund
FROM tblClient INNER JOIN tblClientDetail ON tblClient.ClientID =
tblClientDetail.ClientID
WHERE (((tblClientDetail.Product)=[Forms]![frmSelectClient]![Product]));

Thanks
 
D

Douglas J. Steele

SELECT tblClientDetail.ClntDetID, tblClient.GroupName, tblClientDetail.Fund
FROM tblClient INNER JOIN tblClientDetail ON tblClient.ClientID =
tblClientDetail.ClientID
WHERE (((tblClientDetail.Product)=[Forms]![frmSelectClient]![Product]))
OR (([Forms]![frmSelectClient]![Product] = "All"));
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top