I've been trying to reference a cell based on a specific formula in Google Sheets.
For example, if I want to reference cell A10
, I can't write down cell A(11-1)
or else I get an error.
In my case, I have a number in cell C2
that changes based on other values in the spreadsheet. From here, I want to get the information from the cell with row C2
and column A
and print that out in cell D3
.
I've tried putting in the following formula in cell D3
: =A(C2)
. But this didn't work.
How can I change the following formula in order to get my result?
Thanks, and sorry if this question is basic and simple, I'm really new to Google Sheets.