I'm trying to come up with a time sheet for my database. What I have is a blank form with to sub-forms the blank form is called frmNewTime, the first form I put on this is a form I call frmTime this is just built from a query that gives the Employees name, it's a Continuous form with a command button to pick the employee who's time to add. The other form is called frmEmpTime and is built from a table tblTIME_LINE that stores the EMP_NUM, JOB_NUM, LINE_RATE, HOURS_WORKED, LINE_RATE, and LINE_DATE. What I would like this to do is when you press the command button for the employee on the frmTime form, update the EMP_NUM and the LINE_RATE fields on the frmEmpTime form. The data comes from two tables' tblEMPLOYEE and tblCRAFT, the EMP_NUM is the key on the employee table and CFT_NUM is the foreign key. I've tried different things but nothing seems to work right. Please put me in the right direction Thank you for any help. Tom