Thank you so much Gina. I really appreciate your taking the time to look at this.
I have moved tblTherapistPrimary and tblTherapistSpecial back to linking to Therapist. The days are when they are assigned to be at work all day at that particular clinic. Visits are the actual therapy (Ankle, Elbow, Knee, etc.).
I am doing something similar to my previous projects -- enabling the end user to find therapists by name, or interests, or therapy type (physical therapy, speech therapy, occupational therapy, etc.) or by clinic.
So far everything is done except for having trouble with two SQLs. It's weird as I had no trouble with a similar SQL (Visit Type then Clinic), but I can't seem to figure out the two below.
Visit then Day:
SELECT tlkpVisit.vVisitID, tlkpVisit.vName FROM tlkpVisit ORDER BY tlkpVisit.vName;
SELECT tlkpDay.dDayID, tlkpDay.dDay FROM tlkpDay INNER JOIN tblVisitDay ON tlkpDay.dDayID = tblVisitDay.vdDayID WHERE (((tblVisitDay.vdVisitID) = [Forms]![frmSearch]![cboVisit])) ORDER BY tlkpDay.dDay;
Special Interest then Clinic:
SELECT [tlkpSpecialInterest].[siSpecialInterestID], [tlkpSpecialInterest].[siName] FROM tlkpSpecialInterest ORDER BY [siName];
SELECT tlkpClinic.cClinicID, tlkpClinic.cName FROM tlkpClinic INNER JOIN tblSpecialClinic ON tlkpClinic.cClinicID = tblSpecialClinic.scClinicID WHERE (((tblSpecialClinic.scSpecialID) = [Forms]![frmSearch]![cboSpecial])) ORDER BY tlkpClinic.cClinicID;
The file is at:
https://drive.google.com/file/d/1eyvcYiM_jynw0fZNlxieJS7c7uwQJLqy/view?usp=sharing