I'm building a task management sheet that prioritizes tasks by their order on the sheet. A formula calculates lead time of a task based on its current position in the list. Is there a way to dynamically reference the row number of a task?
The easiest way would be a function that references the row number (since those update dynamically as a row is dragged to a new location), but this seems not to exist yet.
I have accomplished this in Excel by using the OFFSET function to look at the value of the cell directly above the current cell (=[previous cell] + 1), but Smartsheet doesn't have that either. In fact I can't find any way to reference a cell's location, its neighbors (apart from parents/children), or the current cell in general.
Has anybody found a way of dealing with this? Auto-numbering columns won't work because the cell values do not change once created. Also, I don't want to create a chain of parent/child relationships.