2 tables: Projects & Tasks.
Projects has fields “Project”–Project 1, Project 2, … and “Stage”–A, B, or C.
Tasks has fields “Task”–string, “Owner”–John or Jane, and “Task Stage”–A, B, or C.
Based on matching “Stage” in Projects & Tasks, I would like to populate newly generated assigned task tables, John’s Tasks & Jane’s Tasks, specific to “Owner” in Tasks.
Example: (one record in each table → desired output)
Records:
Projects - “Project” = Project 1; “Stage” = A
Tasks - “Task” = ‘fill out forms’; “Owner” = John; “Task Stage” = A
Output:
“Project”, “Stage”, “Task” should populate a record in John’s Tasks table.
(Project 1, A, ‘fill out forms’)
Can someone help?