Forum Discussion

Johnteter's avatar
Johnteter
Copper Contributor
Sep 09, 2023

Structured References Not at “This Row”

Is there a way to use structured references to refer to cells that exist outside of the row that the formula I am typing is in?

  • mtarler's avatar
    mtarler
    Silver Contributor
    well yes and no. You can still use INDEX and OFFSET but that sort of takes away the from the structured reference thing:
    =OFFSET([@ID], -1, 0)
    =INDEX([ID], 4,1)
    another thing you can do is reference the column up to this row:
    =ROWS( [[#Headers],[ID]]:[@ID] )

Resources