Selecting the last value of a column

前端 未结 23 1887
再見小時候
再見小時候 2020-11-28 19:15

I have a spreadsheet with some values in column G. Some cells are empty in between, and I need to get the last value from that column into another cell.

Something li

23条回答
  •  南方客
    南方客 (楼主)
    2020-11-28 19:48

    Actually I found a simpler solution here:

    http://www.google.com/support/forum/p/Google+Docs/thread?tid=20f1741a2e663bca&hl=en

    It looks like this:

    =FILTER( A10:A100 , ROW(A10:A100) =MAX( FILTER( ArrayFormula(ROW(A10:A100)) , NOT(ISBLANK(A10:A100)))))
    

提交回复
热议问题