How can update keep an updated balance on a spreadsheet

  • Thread starter Thread starter bug28
  • Start date Start date
B

bug28

i have a budget setup in a spreadsheet and i cant figured how to keep a
balance updated on a loan without typing in the new balance everytime
 
bug28 said:
i have a budget setup in a spreadsheet and i cant figured how to keep a
balance updated on a loan without typing in the new balance everytime

It's not clear what you are trying to do. Is it something along these lines?

Put the initial loan amount in B1.
Put each repayment in column A, starting at A2.
Put this formula
=B1-A2
or this one
=IF(A2<>"",B1-A2,"")
in B2 and drag down column B as far as needed.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top