Return values from the row above to the current row

后端 未结 5 1927
栀梦
栀梦 2021-02-01 02:34

I am trying to do simple thing: I just need to set some cells to values that are on the previous rows. I have tried =A(Row()-1) but it does not work.

5条回答
  •  無奈伤痛
    2021-02-01 02:51

    This formula does not require a column letter reference ("A", "B", etc.). It returns the value of the cell one row above in the same column.

    =INDIRECT(ADDRESS(ROW()-1,COLUMN()))
    

提交回复
热议问题