Help with Event Pls

  • Thread starter Thread starter TotallyConfused
  • Start date Start date
T

TotallyConfused

I have a main form and subforms in a Tabs. My main form list a specific doc.
One of my Tab/subform lists other docs associated with this patient.
However, when this tab opens it lists other docs and the doc on the main
form. I want to have my tab/subform only list other docs and not the doc on
the main form? Thank you.
 
Base your subform on a query and in the DocID field
(or whatever the document PK field is called) use criteria
like;

<> Forms!YourMainForm!DocID
 
Back
Top