help is appreciated on this topic!
- I am trying to reference cell B10 from Sheet2 to cell A1 in Sheet1.
- Cell B10 contains the formula
SUM(B1:OFFSET(B10,-1,0))
, which sums values from B1:B9. - Daily, I add a new row to Sheet2 such that the Column B range increases by +1, from B1:B9 to B1:B10, and the formula from B10 moves to B11.
- I now need cell A1 in Sheet1 to reference cell B11 in Sheet2.
I've tried using offset() and indirect() but haven't figured this out.
Thanks for help!