Need a way to create a cleared balance rather than a running total in Excel 2011

pkosh

New Member
Joined
Dec 26, 2013
Messages
1
I've just switched from Numbers 09 to Excel 2011 because I want to use pivot tables to evaluate my personal financial/budget data and I want to continue having a "cleared balance" column as well as a "running total" column.

I used a single "amount" column for the amount of the transaction in Numbers.



Cleared for me means that the amount has cleared my bank, so that column's total always matches my bank balance.


Running total is simply a list of all our expenses and that column's total represents the amount of money we would have if every bill was paid and ever check cleared on the spot. I use it for making sure we aren't over spending.


In Numbers 09, I use a check mark column, which I check when an item clears the bank and a formula then populates the cleared balance cell. The formula I'm using is:


=IF(I4,$L$2+(SUMIF($I$3:I$4,TRUE,$J$3:J$4)),"")


where:


I is the check mark column
L is the cleared balance column
J is the amount column

I copied the formula from a discussion group years ago and don't remember where I found it, but it worked perfectly.



However, in Excel I can't make the check mark function serve the same purpose.


Also, I've tried adding two new columns for the transaction amount (Debit & Credit) as well as a new Cleared column that I'm putting a "x" in if the item has cleared. I've created a new formula, which works ONLY if the items clear in date succession otherwise I get a #VALUE! error (i.e., the formula only returns an amount if the item above it has cleared as well.). The formula I'm using is:


=IF(L4="","",J3+D4-E4)

where:

L is the cleared column
J is the cleared balance column
D is the debit column
E is the credit column

Any help anyone can provide will be very much appreciated.

pam
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
[TABLE="width: 600"]
<TBODY>[TR]
[TD]Description
[/TD]
[TD]Cleared
[/TD]
[TD]Debit
[/TD]
[TD]Credit
[/TD]
[TD]Running Bal
[/TD]
[TD]Cleared Bal
[/TD]
[/TR]
[TR]
[TD]text
[/TD]
[TD]x
[/TD]
[TD]value
[/TD]
[TD]value
[/TD]
[TD]=sum(c2:d2)
[/TD]
[TD]=SUMIF(B$2:B2,"x",C$2:C2)+SUMIF(B$2:B2,"x",D$2:D2)
[/TD]
[/TR]
</TBODY>[/TABLE]

I have created simplified copy of what you are trying to achieve, in columns A:F as above.

Please change the references as necessary, the above assumes you used +/- accordingly in credit/debit column.
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,337
Members
452,637
Latest member
Ezio2866

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top