I'd like to referencing a cell in another table based on other cell values.
I have three tables: "working", "data A", and "data B". The "working" table has two columns where I enter data manually. For instance, the "working" table might have (with | as a cell delimiter):
name | level
======
data A | 3
data B | 2
data A | 4
data A | 5
and the data tables might look like:
level | value
======
1 | 62
2 | 95
3 | 142
I would like to add a third column to the right which contains the value from the corresponding table + row. For instance, the first row would contain the third cell of the "data A" table, the second would be the second cell of the "data B" table, etc.
How can I include cell references in a cell reference? Or am I approaching this problem the wrong way?
I have three tables: "working", "data A", and "data B". The "working" table has two columns where I enter data manually. For instance, the "working" table might have (with | as a cell delimiter):
name | level
======
data A | 3
data B | 2
data A | 4
data A | 5
and the data tables might look like:
level | value
======
1 | 62
2 | 95
3 | 142
I would like to add a third column to the right which contains the value from the corresponding table + row. For instance, the first row would contain the third cell of the "data A" table, the second would be the second cell of the "data B" table, etc.
How can I include cell references in a cell reference? Or am I approaching this problem the wrong way?