Hello All
I have searched and cannot find the answer to this question. I made a query based on two tables. I can update anything inside of this query only when i take out the word DISTINCT.
What i want to be able to do is give the user the ability to choose a procedure type and view all of the clients under that type in a form and choose to whom they will print a label for.
tblpatientinfo has one to many to tblvisits
This query will not allow me to update information (within query and within form)
ANy help would be appreciated, thanks
Raven
I have searched and cannot find the answer to this question. I made a query based on two tables. I can update anything inside of this query only when i take out the word DISTINCT.
What i want to be able to do is give the user the ability to choose a procedure type and view all of the clients under that type in a form and choose to whom they will print a label for.
Code:
SELECT tblvisits1.prodtype, tblpatientinfo.Last, tblpatientinfo.First, tblpatientinfo.Address, tblpatientinfo.City, tblpatientinfo.State, tblpatientinfo.Zip, tblpatientinfo.inactiveclient, tblpatientinfo.nosnailmail, tblpatientinfo.printlabel
FROM tblpatientinfo INNER JOIN tblvisits1 ON tblpatientinfo.patientID = tblvisits1.patientID
WHERE (((tblvisits1.prodtype)=[forms]![frmprodprint]![prodpick]) AND ((tblpatientinfo.inactiveclient)=False) AND ((tblpatientinfo.nosnailmail)=False));
tblpatientinfo has one to many to tblvisits
This query will not allow me to update information (within query and within form)
ANy help would be appreciated, thanks
Raven