Maybe someone can help with the structure of my medication database. I have 3 tables: (1) Charts -- with name, address, etc; (2) Visits -- with information specific to each time a patient comes to the office; (3) Medications -- with drug name, dose, etc. "Charts" is the parent table, and "Visits" and "Medications" are both child tables. I set it up this way because I don't want to reenter medications for each new visit. Works great, but I have discovered a problem. I cannot look back to a previous visit and see exactly what medications and doses were listed at that time. I thought about structuring a many-to-many relationship between "Visits" and "Medications", however when I create a new visit, again there are no medications listed. Any ideas? Thanks in advance.