Calculate row/column number in reference formula

  • Thread starter Thread starter mirin
  • Start date Start date
M

mirin

Hello,

I have the below formula in a cell:
=Sheet1!A19

Now instead of 19 I want to calculate the value 19 like (current row
number -1) but obviously putting the formula as =Sheet1!A(Row()-1)
doesn't work. How can I set it as a calculated value?

Thanks!
 
mirin said:
Hello,

I have the below formula in a cell:
=Sheet1!A19

Now instead of 19 I want to calculate the value 19 like (current row
number -1) but obviously putting the formula as =Sheet1!A(Row()-1)
doesn't work. How can I set it as a calculated value?

Thanks!

=INDIRECT("Sheet1!A"&ROW()-1))
 
Back
Top