glthornton
Programmer
I'm using MS Access 2000 and I'm trying create a query (or table if needed) to provide me all the Appointment ID's that are still acive and not marked as "cancelled". I have one query (Booked_Appts) providing me with just the "Booked" Appointment ID's (ApptID). The other query (Cancelled_Appts) provides me with all the Appointment ID's (ApptID) that have been marked "Cancelled".
I would like some assistance as to how I can use both queires to tell me which Appointment ID's (ApptID) that are still "active".
So based upon the above type example, I would only like to have ApptID's 123, 789, 1011 as a result. Because not only is ApptID 456 "booked", but it is also marked as "cancelled". This is caused because the database that I am linking to, has an entry for each occurrance the status of an appointment is changed.
I would appreciate any suggestion or recommendation that anyone could provide.
Thank you,
GlThornton
I would like some assistance as to how I can use both queires to tell me which Appointment ID's (ApptID) that are still "active".
Code:
(Booked_Appts.ApptID) (Cancelled_Appts.ApptID)
123 456
456
789
1011
So based upon the above type example, I would only like to have ApptID's 123, 789, 1011 as a result. Because not only is ApptID 456 "booked", but it is also marked as "cancelled". This is caused because the database that I am linking to, has an entry for each occurrance the status of an appointment is changed.
I would appreciate any suggestion or recommendation that anyone could provide.
Thank you,
GlThornton