Hi, I made a simple checkbook program, that through a formula will add or subtract to the balance depending if a debit or credit.
Check Book Program
D E F
Date debit Credit Balance
0 10 124.00
4 120.00
120.00
120.00
120.00
That formula I am using is:
=(IF(D9=0,F8+E9,F8-D9))
and it works great. However, in the balance column it repeatas the balance all the way down, because I have the fomula all the way down; so that it will compute the balance. What I want is to add to this formula so that if it so that if D and E are blank it will make Coulmn F blank, until it has something to compute.
Check Book Program
D E F
Date debit Credit Balance
0 10 124.00
4 120.00
120.00
120.00
120.00
That formula I am using is:
=(IF(D9=0,F8+E9,F8-D9))
and it works great. However, in the balance column it repeatas the balance all the way down, because I have the fomula all the way down; so that it will compute the balance. What I want is to add to this formula so that if it so that if D and E are blank it will make Coulmn F blank, until it has something to compute.