I have 4 tables all fed from Sharepoint List
The master table is the list of companies , each company has a unique code in text format
There are 3 additional tables , that are all linked by the code value , which internally is the Title column.
I am trying to find a solution to if the code is changed in the master table , then that code would be updated with the new value in all of the other tables.
Is this possible.
Example
Master Table
Name Code
Bobs Burgers BB1
Type Table
Code Type
BB1 Food Vendor
Contact Table
Code Email
BB1 bob.burger@bobsburger.com
Activity Table
Code Date Message
BB1 01/01/2022 New order of 10,000 quarter pounders
BB1 03/03/2002 New order of 10,000 cheese slices
If BB1 was changed to BB2 in the Master Table edit form , then I would need all the data to look like this
Master Table
Name Code
Bobs Burgers BB2
Type Table
Code Type
BB2 Food Vendor
Contact Table
Code Email
BB2 bob.burger@bobsburger.com
Activity Table
Code Date Message
BB2 01/01/2022 New order of 10,000 quarter pounders
BB2 03/03/2002 New order of 10,000 cheese slices