Any help here would be great!
How do you mean? You could create the necessary junction table records fairly painlessly if you do the following:
In your Workers table:
- Create a
link to another record
field pointing at a (presumably) empty junction table
- Copy the entire
{Project}
column into that link
field.
In your Junction table:
- Create a new
link to another record
type field that will point to the Projects
table. Copy the entire first column into this field.
- Add a
Lookup
field that gets the {Worker}
. Convert this field into a link to another record
type.
- Convert the first column into an Autonumber or Formula to get unique record names.
In both Projects and Workers tables
- Delete the fields that link these tables to each other, or convert them into Lookups pointing to the connection to the Junction table. Do all future linking through your junction table.
How do you mean? You could create the necessary junction table records fairly painlessly if you do the following:
In your Workers table:
- Create a
link to another record
field pointing at a (presumably) empty junction table
- Copy the entire
{Project}
column into that link
field.
In your Junction table:
- Create a new
link to another record
type field that will point to the Projects
table. Copy the entire first column into this field.
- Add a
Lookup
field that gets the {Worker}
. Convert this field into a link to another record
type.
- Convert the first column into an Autonumber or Formula to get unique record names.
In both Projects and Workers tables
- Delete the fields that link these tables to each other, or convert them into Lookups pointing to the connection to the Junction table. Do all future linking through your junction table.
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
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
You do not have to make every single possible variation. If your junction table only needs 1000 interactions then only make 1000 records.