I have realised that structured references are clean to write when making formulas, however when using them in a formula to refer to values in columns using structured references this only returns the values on the same row as your formula. This is not ideal.
Is there a way to refer to values in a structured reference column from the top of the column with a formula on a different row? I looked into this answer but it was only for the top value in the column.
So for example say I have a Table1
with 3 data columns and then I want to make a Table2
with a calculation column that is as simple as =Table1[Data1]*Table1[Data2]
, how would I get that formula to work down the column of Table2
even if Table2
is not on the same rows as Table1
?
| Data1 | Data2 | Data3 |
|------------------------
| 22 | 7 | Joe |
| 24 | 2 | Bob |
| 44 | 7 | Ben |
| 29 | 8 | Sue |
| Calc1 |
|----------
| Formula | (Formula = 22 x 7)
| Formula | (Formula = 24 x 2)
| Formula | (Formula = 44 x 7)
| Formula | (Formula = 29 x 8)
Edit just so readers understand, this is an oversimplification of what I am trying to achieve, managing to use structured references as stated above will help solve the bigger problem.