I have 2 tables in access. 1 table are my wildcards. These are data points that need to be updated by a user
[code]
id value
wildcard value = $test$
id value $test$ value of test
The other table contains a lot of data. All of this data has the same column headers, but the data itself can be anything. In a lot of cases, the data needs to be updated using the wildcard table.
id value1 value2 1 $test$ some text $test$ here 2 $test$ some more text here $test$ $test$ $test$ here and here
Is there a way to link table 2 with table 1 so that when i update $test$ all of the $test$ values in tables 2 will update to "value of test"?