Google spreadsheet get cell value with row and column index

帅比萌擦擦* 提交于 2020-02-01 00:21:18

问题


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 the other way to do "=B1" i have row as 1 and column as 2.

Any suggestion, a single spreadsheet query. other than add function to spreadsheet.


回答1:


Say the row number is in A1, and the column number is in A2, any of these should work:

=OFFSET(A1;A1-1;A2-1)
=INDIRECT("R"&A1&"C"&A2)
=INDEX(A1:400000;A1;A2)



回答2:


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"



来源:https://stackoverflow.com/questions/12776983/google-spreadsheet-get-cell-value-with-row-and-column-index

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!