I your sample case, 1 camper has 3 Meds. This is a 1 to many relationship.
Usually you would display this using a Form and subForm where the 1 side would be presented ona Form dealing with the Camper.
The subForm would be the Many side showing each of the Meds with related dosage and frequency. The Form and subform have a common field,
the LinkFields (CamperID probably) to jkeep form and subform in sync.
What you are showing is a Form. Behind the Form is a table or possibly a query involving multiple tables or parts thereof.
I don't know your entire requirement, but my best guess would be to have a
tblCamperMeds
with fields
CamperId
MedID
MedName
MedDosage
MedFrequency
SpecialInstructions
Let's say you have Camper 37
who has 4 Meds
You could have a table with
Code:
CamperId MedId MedName MedDosage MedFrequency SpecialInstructions
37 2 Lipitor 40mg 1 per day
37 17 Norvasc 10mg 1 per day
37 18 Xalta 5mg 2 per day take with Orange juice
37 20 zoffar 2mg 1 per week take same day each week
Hope this is helpful.
For more on Form/subform see youtube look for 599CD Form subform