简体   繁体   中英

How to add a cell reference from another cell in excel

在此处输入图像描述

I would like to add cell reference in a formula from another cell of the current worksheet. In the above picture, I would like that "8" of "A8" should be referenced from "B4" of the "Sheet1" worksheet. So if there would be "9" or "2" or whatever in "B4", that digit would be added with "A", so it would be "A9" or "A2" instead of "A8".

How to write the formula to achieve that?

Use indirect() function and pass arguments concatenate("A",cell value)

=INDIRECT(CONCATENATE("A",B4),1)

在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM