Excel: Get column Value based on anther column Val

2019-09-03 20:40发布

I have a row which contains a number: example A1 = 10 Now I want to get the value of Row B10, but the Row here is B(Value of A1). i need some thing like =B(A1)) so this value will = value of Column B but the row is based on value of A1

标签: excel
2条回答
疯言疯语
2楼-- · 2019-09-03 20:42

As commented, you can use INDIRECT

=INDIRECT("B"&A1)

查看更多
迷人小祖宗
3楼-- · 2019-09-03 20:42

use indirect:

=INDIRECT("B" & A1)
查看更多
登录 后发表回答