Forum Discussion
SunnyPhoenix1
Nov 04, 2023Copper Contributor
How to structurally reference a Table cell which is not of following types ① non-Header ② same row?
I need help with formula in column to structurally reference same cell within same Table.
3 Replies
Sort By
If you want to refer to a cell with a fixed position relative to the cell with the formula, you can use OFFSET.
Let's say the formula is in a column named MyCol.
- You want to refer to the cell to the left: =OFFSET([@MyCol], 0, -1)
- You want to refer to the cell above: =OFFSET([@MyCol], -1, 0)
- You want to refer to the cell one row up and one column to the right: =OFFSET([@MyCol], -1, 1)
- SunnyPhoenix1Copper Contributor
- SunnyPhoenix1Copper ContributorYes I am finding Apple Numbers complementary to Excel.