1
votes

Need help in updating the value of the cell automatically based on the last value inserted on the sheet.

Basically, I just wanted the sheet to automatically update the balance (row 1, col I) every time I insert a row below the header (row 2).

The balance should work this way: running balance (basis is always in row 3) MINUS the issued amount (column D) that has not been listed in columns E to J.

I have tried using this formula: running balance MINUS issued amount but whenever i add another row, the basis of running balance will also move to row 4, which instead should remain in row 3 (so i don't have to keep changing the formula every time i add another row).

my sheet looks like this

1
Have you used the OFFSET function before? - Enigmativity
no, i haven't tried OFFSET - swayingtrees
You should try it. It does the job much better than INDIRECT. - Enigmativity

1 Answers

1
votes

use INDIRECT to freeze the reference and make it static. example:

=SUM(INDIRECT("A2:A"))