So I want a search query that take a tables information and is able to search a field or two.
tblPatientInfo
-PatientID
-PatientName
-PatientPhone
-PhysicianName
-PhysicianPhone
-FacilityName
-FacilityAbbr
-PatientInfo...
qryPatientInfo
(same as above)
qrySearchPatient
-SearchPatientID
-SearchPatientName
-SearchPhysicianName
-SearchFacilityName
I know in the criteria you put
Code:
Like "*" & [Forms]![frmPatientInfo]![PatientID] & "*"
but now how do i get that to requery, the form is bound to the query qryPatientInfo
and the search query (pop up form) that you can type in a field from qrySearchPatient and it will find the ones similar
SearchQuery.zip