I am trying to produce a scheduling form and having trouble figuring out how to approach it. Any advice would be great. Basically I created a form showing a list of tasks that need to be completed. In the header section I put a series of unbound text boxes 8-12 total showing the next 8-12 Friday weekending dates. In the detail section under the corresponding week ending the user would enter the hours budgeted for that week. An individual task may take multiple weeks.
I need to somehow store the weekending from the unbound header and the hours associated with the task.
Task Total Hours 10/17/08 10/24/08 10/31/08 11/7/08
Task 1 8 2 6
Task 2 20 5 5 5 5
Store in table somehow
Task Weekending hours
Task 1 10/17/08 2
Task 1 10/24/08 6
Task 2 10/17/08 5
Task 2 10/24/08 5
Task 2 10/31/08 5
Task 2 11/7/08 5
I need to somehow store the weekending from the unbound header and the hours associated with the task.
Task Total Hours 10/17/08 10/24/08 10/31/08 11/7/08
Task 1 8 2 6
Task 2 20 5 5 5 5
Store in table somehow
Task Weekending hours
Task 1 10/17/08 2
Task 1 10/24/08 6
Task 2 10/17/08 5
Task 2 10/24/08 5
Task 2 10/31/08 5
Task 2 11/7/08 5
Comment