Hello, I wanted to have my forms Record source based off a selection from my combo box (cboFunction). I can create a query and open the form and make the selection in the combo box and the correct data comes up but I don't know how to execute it in VBA on my form? Below is the querys SQL... What would I do in the After Update of the (cboFunction) to get the data to come up in my detal section? Thanks!
Thanks,
SoggyCashew.....
SQL:
SELECT tblFunctionRequirements.FuncID, tblFunctionRequirements.Requirements
FROM tblFunctionRequirements
WHERE (((tblFunctionRequirements.FuncID)=[Forms]![frmMain]![cboFunction]));
Thanks,
SoggyCashew.....