Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google spreadsheet cell reference from value of another cell

This is the scenario:

In cell A1 I have value "12".

In cell B1 I enter value "1".

In cell C1 I want to have value of Column "A" and row defined in cell B1.

How can I display the value "12"?

like image 994
George I. Avatar asked May 04 '14 12:05

George I.


People also ask

How do you do an absolute cell reference in Google Sheets?

An absolute cell reference ensures that the formula is always refers to the same cell, even when it's copied and pasted. Absolute References remain constant no matter where they are copied. Add $ symbols to make the reference absolute. $E$1 is an example of an absolute cell reference.


1 Answers

=INDIRECT("A"&B1)

Help page for INDIRECT function: https://support.google.com/drive/answer/3093377?hl=en-GB

like image 99
AdamL Avatar answered Oct 26 '22 17:10

AdamL