I have a sheet with some data on it. I have another sheet to calculate a report from the data on the other sheet. To calculate the report, I need a “starting cell reference” whence other important cells can be referenced. How can the user input a “starting cell reference”? If the user types =
then clicks the cell in the other sheet, I’m not sure how to get, for instance, the value of the cell below that cell (etc.). Perhaps the user needs to type the cell reference ("c6"
) directly? Then I can prepend the sheet name, dereference the cell, and construct neighbor cell references from thence? But I’m not sure how to deconstruct the cell reference. For instance, from “c6”, how do I get “c”? I tried =row(c1)
(c1
is the cell containing "c6"
) and it returns 1
!
What’s the best way to do this?