Greetings,
I have been looking for an answer to this all over and am unable to find it. I have a database of patient records that I want to be able to filter by both DOB and/or Last name. I have tried
but when I do this it shows me all records and puts the searched criteria in the dob field for all records. All i need is a simple criteria
any ideas?
Thanks
I have been looking for an answer to this all over and am unable to find it. I have a database of patient records that I want to be able to filter by both DOB and/or Last name. I have tried
Code:
PARAMETERS DOB DateTime;
SELECT tblPatients.[Case Number], tblPatients.[Last Name], tblPatients.[First Name], tblPatients.DOB, tblPatients.Clinician, tblPatients.[Case Manager], tblPatients.[Last Authorization Date], tblPatients.[ADAP Expiration], tblPatients.[ADAP Status]
FROM tblPatients;
but when I do this it shows me all records and puts the searched criteria in the dob field for all records. All i need is a simple criteria
any ideas?
Thanks