I currently have a form that performs a search; however, I want the record results of the search to be used in a form that I have already made. Is there anyway to easily accomplish this?
I assume your search form has one of more controls (comboBox maybe) that allows you to select the records you want. In the easiest case, let's say you have only one combobox. Simply change your Report recordsource SQL to something like:
SELECT Employee.*
FROM Employee
WHERE (((Employee.Department)=[Forms]![frmSearch]![cboFind]));
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.