Jun 21, 2021 06:03 PM
Please Help!
I have a table the contains my workers and a variety of information on each of them. They also are linked to projects that they are assigned as such.
Worker Project
A 1 2 3
B 2
C 2 3
Project is a multiple select column that links to a project table that shows top level detail on each project.
I would like to output to a new table that expands each of these records to provide detail on each workers interaction with the specific project as shown below:
Worker Project
A 1
A 2
A 3
B 2
C 2
C 3
I have attempted to use “create records from multiple select” and junction tables to no avail. I have approximately 500 workers and 200 projects and do not want to create records for every possible occurrence as my data is very sparse. Thanks in advance for your help as I attempt to navigate,
Damien
Jun 22, 2021 11:07 AM
Any help here would be great!
Jun 22, 2021 12:26 PM
How do you mean? You could create the necessary junction table records fairly painlessly if you do the following:
In your Workers table:
link to another record
field pointing at a (presumably) empty junction table{Project}
column into that link
field.In your Junction table:
link to another record
type field that will point to the Projects
table. Copy the entire first column into this field.Lookup
field that gets the {Worker}
. Convert this field into a link to another record
type.In both Projects and Workers tables
Jun 22, 2021 04:31 PM
Kamille,
Thanks for answering! I was looking to have this table update as projects and workers were added and thus do not want to copy just the data that already exists. Additionally, my data is sparse with 500 workers and 200 projects, but only about 1000 interactions to capture, rather than the 100,000 that a junction table gives me.
Thanks in advance for any more insight you can provide,
Damien
Jun 22, 2021 04:34 PM
You do not have to make every single possible variation. If your junction table only needs 1000 interactions then only make 1000 records.