how do i create a running balance on checkbook register

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I downloaded a checkbook register template and i would like to know how i get
it to automatically add/subtract the debits/credits so i have a current
balance at all times
 
Hi mic

The logical way would be to add a Balance column. If you have deposits in
say Column C and withdrawals in say Column D, and you start in Row 3 you can
insert an opening balance in E3.

In E4 enter the following formula:

=IF(AND(C4="",D4=""),"",E3+C4-D4)
and copy it doen as far as you wnat to go
 
We would need a bit more information as to what the issues are. Can
you describe the cell structure?


Steve
 
thank -you...problem solved

Kassie said:
Hi mic

The logical way would be to add a Balance column. If you have deposits in
say Column C and withdrawals in say Column D, and you start in Row 3 you can
insert an opening balance in E3.

In E4 enter the following formula:

=IF(AND(C4="",D4=""),"",E3+C4-D4)
and copy it doen as far as you wnat to go
 
Back
Top