M
mahoney.jonathan
I'm currently working on our project database. What we want to do is
for each project, track what tasks need to be done, their complexity
and from that estimate duration for each developer type.
I have setup currently:
tblComplexity
complexID (autonumber)
complexName (with the following values)
Low
Med
High
tblTask
taskID (autonumber)
taskName (with the following values)
GUIDesign
MDBFeed
Report
tblCostLookup
costLookupID (autonumber)
complexID (lookup from tblComplexity)
taskID (lookup from tblTask)
BADuration
SADuration
SEDuration
So tblCostLookup is completely filled in, each task has a value for BA,
SA and SEDuration for each task/complexity combination.
I have a built a query that can read the values and calculate each
duration which is easy. I can get that to appear in a form using a
subform bound to the query, which just reads the fields from the combo
boxes on the main form.
The problem I'm running into is each project can have multiple tasks,
so I need a contin. form setup which I tried using a subform,
unfortunately you can't have a subform in a contin. form.
Any help would be appreciated this is really hanging me up at the
moment.
for each project, track what tasks need to be done, their complexity
and from that estimate duration for each developer type.
I have setup currently:
tblComplexity
complexID (autonumber)
complexName (with the following values)
Low
Med
High
tblTask
taskID (autonumber)
taskName (with the following values)
GUIDesign
MDBFeed
Report
tblCostLookup
costLookupID (autonumber)
complexID (lookup from tblComplexity)
taskID (lookup from tblTask)
BADuration
SADuration
SEDuration
So tblCostLookup is completely filled in, each task has a value for BA,
SA and SEDuration for each task/complexity combination.
I have a built a query that can read the values and calculate each
duration which is easy. I can get that to appear in a form using a
subform bound to the query, which just reads the fields from the combo
boxes on the main form.
The problem I'm running into is each project can have multiple tasks,
so I need a contin. form setup which I tried using a subform,
unfortunately you can't have a subform in a contin. form.
Any help would be appreciated this is really hanging me up at the
moment.