'current' record from many side of relationship

G

Guest

I have two tables, tblPatient and tblReferral, with a one to many
relationship. One patient can have many referrals. However one patitent can
only have one current referral record.

Is the best way to do this to put a field into the tblPatient named
"CurrPatRef" (Current Patient Referral)?

I thought about putting a "Current" check box field into the tblReferral
table however how would I stop all Referral records of one patient being
checked - giving many current referrals for that one patient.

Cheers
 
A

Allen Browne

Is the current referral the most recent one?

If so, you could just add a ReferralDateTime field (date/time type) to
tblReferral.
 
G

Guest

Thanks Allen,

Yes the current referral is the most recent one so I will use my RefDate
field to filter.

Next question - what criteria do I use in my query to show the latest date
of the RefDate field - I searched the site but couldnt find any solution that
helps.

Cheers
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top