Google spreadsheet get cell value with row and column index

前端 未结 2 789
挽巷
挽巷 2021-02-19 13:20

How we can get value from a cell in google spreadsheet?

I have row and column index from ROW() and COLUMN() - 1.

In other words what is t

2条回答
  •  清酒与你
    2021-02-19 14:06

    To do so use indirect() as such:

    =indirect("'PAGE ASD'!"&A2&A3)
    

    where A2 contains the letters to column like "D" or "AA" where A3 contains the number to row like "2" or "35" and the page you are calling the data from is called "PAGE ASD"

提交回复
热议问题