Get content of a cell given the row and column numbers

前端 未结 3 1323
难免孤独
难免孤独 2020-12-01 00:04

I want to get the content of a cell given its row and column number. The row and column number are stored in cells (here B1,B2). I know the following solutions work, but the

3条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-01 00:15

    It took me a while, but here's how I made it dynamic. It doesn't depend on a sorted table.

    First I started with a column of state names (Column A) and a column of aircraft in each state (Column B). (Row 1 is a header row).

    Finding the cell that contains the number of aircraft was:

    =MATCH(MAX($B$2:$B$54),$B$2:$B$54,0)+MIN(ROW($B$2:$B$54))-1
    

    I put that into a cell and then gave that cell a name, "StateRow" Then using the tips from above, I wound up with this:

    =INDIRECT(ADDRESS(StateRow,1))
    

    This returns the name of the state from the dynamic value in row "StateRow", column 1

    Now, as the values in the count column change over time as more data is entered, I always know which state has the most aircraft.

提交回复
热议问题