What you need to do is have a patient table and then a post-op table which
is linked to the patient table by the patient ID. Then you can have a
1-to-many relationship enabling you to have as many entries in the post-op
table as required.
Your post-op table should contain, amongst other things, the patient id,
post-op consult date (this way you can sort the entries in an efficient
manner).
In this manner, you would either create a sub-form to house the post-op data
in your main patient form or create a stand alone post-op form.
--
Hope this helps,
Daniel Pineault
http://www.cardaconsultants.com/
For Access Tips and Examples: http://www.devhut.net
Please rate this post using the vote buttons if it was helpful.
>Thanks for the reply. Maybe I need to be more specific. I already have a
>post-op table which is where the original form was created from. The
>form/table works great for the original contact. However, when the nurse now
>makes the second contact using the exact same questions as the first form;
>and want to see the old data that was input on the first contact to make sure
>the patient is following through. She wants to add another copy of the same
>form to fill in for the second contact. They would like to see the forms in
>order of contact so they see all of the data. The contacts may happen daily,
>weekly or just once.
>I guess I could create a giant form with 10 sub forms all containing the
>same fields. If they only make one contact then the rest would be blank if
>they need more then they would only be limited to a certain number of
>contacts. Is there a way to add a subform (not sure what to call it) with the
>exact same fields as needed for a person who does not know Access and needs
>everything done simple.
You're making an easy job much harder.
You can see multiple records - the past history of visits - using a Continuous
Subform. The mainform would be based on the patient demographics; you could
have a Subform (with its default view set to Continuous Forms) for the visit
data. This will let the user see data from multiple visits all on screen at
the same time, and allow new visit data to be added.
--
John W. Vinson [MVP]