My clients have to attend 15 diffent class sessions. I have 3 tables, Client, Session, SessionHistory. I've created a One-toMany relationships between Client and SessionHistory,and Session and SessionHisotry.
Tables
Client: Key = ClientID
ClientID
FirstName
LastName
Session: Key = SessionID
SessionID
SessionName
SessionHistory: Key = ClientID & SessionID
ClientID
SessionID
DateAttended
I need to make a list showing what sessions each client HAS NOT attended. Please help.
Tables
Client: Key = ClientID
ClientID
FirstName
LastName
Session: Key = SessionID
SessionID
SessionName
SessionHistory: Key = ClientID & SessionID
ClientID
SessionID
DateAttended
I need to make a list showing what sessions each client HAS NOT attended. Please help.