Hi guys, this should be a pretty basic thing, but I can't find out how to do it.
Can we create a relationship (1-to-many) from Table A (Orders) to Table B (Feedback) based on a field? Like a 'regular' database mapping?
Not talking about building a column with LOOKUP, where the user has to manually search the line he wants.
I'd like to bring in a View of Table A the 'Sales Person' from Table B for that particular line.
Table A: Orders:
| Order ID | Amount |
| 123 | 1.000 |
| 456 | 2.000 |
Table B: Order Feedback:
| Order ID | Sales Person |
| 123 | Jim |
| 456 | Andy |
| | |
The LOOKUP is technically done because the Order ID values match, right?