Hello all!
I am having a dilema! I have two tables tied to two forms. There is a relationship.
Table one is called ProgramsNew. It lists specific programs my team is working on. Tabel 2 is Program Acitivites Selection. it contains different GW (GateWays) and activities that may pertain to the project.
Based off of the two tables, a new program is setup on a main form, (ProgramsNew). The subform is referenced to a checklist and status table (Programs Activites Select) for a project. The values of this table never change.
When an individual enters a new program in the main form, they go to the subform, and pick from the list, the different activities that relevant to the project for each Gateway. So in the list, you have GW1 and it lists 12 tasks that can possibly be selected for this program. The colums would be GateWay, which lists the multiple gateways of a project. GW1 - GW8 and there are several tasks listed for each GW.
After the Tasks are selected, the program and it's relevent tasks are tracked through two tables that hold the program data. One lists the program and the Dates of each Gateway. The other table list the project and the Tasks and then a Status Criteria of each task that needs to be selected as we report the phase of the project during each gateway. The records would be GW1 and then list the tasks for that gateway and if they are relevent, and then it lists the status of that task... Each GW and Task, has 3 predifined phases it can be in.
A sample of what one task and the status is listed below.
Project GW Task Status Score State
Project Alpha GW1 Contact Suppliers <50% of suppliers contacted 0
Project Alpha GW1 Contact Suppliers >50% but <75% of Suppliers Contacted 3
Project Alpha GW1 Contact Suppliers >75% of Suppliers Contacted 9
The subform, I would want the above data to look like this:
Project GW Task Status (combo box to select status) Score (updates from selecting status) State (updates to "Current State" or something when the Status is selected.
Project Alpha GW1 Contact Suppliers <50% of suppliers contacted 0
This is where I'm getting confused.
I need to be able to maintain the Project and it's status. What I want, is for a Main Form to have the project information in it from the Table Programs, which I have done.
I need a subform (Sample Data Above) referencing the second table, called GW Activities Status
What I want to happen here, is for the GW to list the Task, and then a combo box to select the Status and by selecting the status, to store the Score. In the afterupdate event, I would have the field State changed to some kind of indicator for my report to identify it as the current status of the task so I can run a report to gather the scores.
I know this was winded, but its the best way I could think to explain it to get started finding the solution.