Can you post where your data is being housed and write out the logic of what you want returned? It's not too evident from your post. Also take a look at the TGML tags you can use for the board, take note of the tt tags.
What exactly are you trying to do? It seems like you just want to make something like a check book registry, where you have deposits and debits and you want to keep a running balance. Is that right?
If so, then generally you would just do something like this:
[tt] ABCD
1| Date Deposit Debit Balance
2| Start $1,000.00
3| 08/01/06 $250.00 [red]$750.00[/red]
4| 08/02/06 $100.00 [red]$850.00[/red]
5| 08/03/06 $75.00 [red]$775.00[/red]
6| 08/04/06 $325.00 [red]$450.00[/red]
7| 08/05/06 $50.00 [red]$400.00[/red]
8| 08/06/06 $300.00 [red]$100.00[/red]
9| 08/07/06 $100.00 [red]$200.00[/red]
10| 08/08/06 $500.00 [red]($300.00)[/red][/tt]
where the formula for the red values above is (starting in cell D3) is [COLOR=blue white]=D2+B3-C3[/color].
Then just fill the formula down the column.
If that isn't what you're after, you will need to provide a lot more detail about what is in the cells used in your formula and what it is you want to do.
[tt]_____
[blue]-John[/blue][/tt]
[tab][red]The plural of anecdote is not data[/red]
Help us help you. Please read FAQ181-2886 before posting.
What I'm looking for is to show THE CURRENT BALANCE in cell B8. Every time I make a Payment I want it to be reduced from A8. 0 means that I have NOT make pymt yet...
A8-A2 ($300)
A8-A3 NO PYMT
A8-A4 ($45)
A8-A5 ($70)
A8-A6 NO PYMT
THE CURRENT BALANCE SHOULD BE $5,455.00
=IF(B2:B6<>0,A8-(SUM(A2:A6))
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.