67peshawar294
Technical User
I am really confused! I started a project for training. Each employee views 12 PPT shows.
I have three tables:
tblemployee tblpresentation tblreview
employeeID presentationID reviewid
employee presentation employeeid
Position presentationid
Date review (yes/no)
As long as I manually enter the numbers in employeeID and presentationID everything works great!
each employee has to view 3 presentations (eventually 12)
how do I populate the tblreview automatically???
THERE ARE 22 EMPLOYEES!!!!! I would like to enter a new employee and have the number of ppt presentation automatically be entered in the tblreview.
thanks jim
I have three tables:
tblemployee tblpresentation tblreview
employeeID presentationID reviewid
employee presentation employeeid
Position presentationid
Date review (yes/no)
As long as I manually enter the numbers in employeeID and presentationID everything works great!
Code:
[u]tblreview[/u]
ReviewID EmployeeID PresentationID Review
1 1 1 FALSE
2 1 2 FALSE
3 1 3 FALSE
4 2 1 FALSE
5 2 2 FALSE
6 2 3 FALSE
7 3 1 FALSE
8 3 2 FALSE
9 3 3 FALSE
how do I populate the tblreview automatically???
THERE ARE 22 EMPLOYEES!!!!! I would like to enter a new employee and have the number of ppt presentation automatically be entered in the tblreview.
thanks jim