Nope. Still not working. I get the canned Access message requiring entry of
the 2nd field if the first isn't working if I try to leave the entire row of
information, nothing if I enter a protocol, then try to blow past the field
for the patient's status.
Perhaps a bit more information is needed:
There are 4 underlying tables:
tblPatients - PtID is the primary key
tblProtocol - ProtocolID is the primary key
tblPatientStatus - PtStatusID is the primary key.
tblPtProtocolActivity - PtProtocolActivityID is the primary key, and I've
used PtID, ProtocolID, & PtStatusID as foreign keys (since one protocol may
have many patients & 1 patient may have many protocols).
Relationships are established between tblPtProtocolActivity and the other 3
tables.
The query is based on the 4 tables above.
I look up the fields "LastName" & "FirstName" directly from tblPatients.
I look up the field "ProtocolName" directly from tblProtocol.
I pull PtStatusID down from tblPtProtocolActivity & use a combo box to look
up the value in the query.
If I need to use a combo box to look up the fields from tblPatients, note
that I'm drawing 3 separate fields from that table into the query - LastName,
FirstName, & MRN. I tried to figure out how to pull these into the query
using the foreign key & a combo box but couldn't get that figured out.
Your help and time are much appreciated.