Table 1 from another application has this relevant data<br>EMPID(Pri. 1-m T2.EMPID), DEPT_ID<br><br>Table 2 - Access Table<br>GRANTID(Pri.) EMPID(m-1 T1.EMPID), Effective_Year<br><br>Table 3 - Access Table<br>DEPTID(m-m T1.DEPT_ID), Effective_Year(m-m T2.Effective_Year)<br><br>I could combine DEPTID and Effective_Year to create a primary key, but whatever key I use for Table 3 has to be a member of table 1. Everything else in Table 1 is not relevant to the department.<br>By effective dating the table i could solve this where i can query on the last update to the table, but I need some sort of event to handle the effective dating (copy the current record, allow for editing of the record and updating the index and date)<br><br>I am not sure if this helps or not. <br><br>Brad