I'm having difficulties understanding how to link these two tables and would appreciate a little help.
Table 1 called "Products" looks a bit like this:
| Make | Line | Model | Type | 
| Dell | Latitude | 123 | Laptop | 
| Dell | Optiplex | 3231 | Desktop | 
| HP | Probook | A34 | Laptop | 
All the fields are Single Text except Type which is Single Select
Then I have another table called 'Processes' with only two fields
| Type | Process | 
| Laptop | Box Assembly | 
| Laptop | Screen Manufacture | 
| Laptop | PSU Testing | 
| Desktop | Box Assembly | 
| Desktop | Case Paint | 
| Desktop | PSU Testing | 
On the Product Table, I'd like it to "lookup" the selected product type and complete a field containing all of the processes.
| Type | Process | 
| Laptop | Box Assembly, Screen Manufacture, PSU Testing | 
| Desktop | Box Assembly, Case Paint, PSU Testing | 
I'm having trouble understanding how to set this up. Any ideas?







