+ Reply to Thread
Results 1 to 16 of 16

Calculate ending balance based on un-checked items in another column

  1. #1
    Registered User
    Join Date
    01-31-2013
    Location
    Chicago, Illinois
    MS-Off Ver
    Excel 2010
    Posts
    8

    Calculate ending balance based on un-checked items in another column

    Hello, this is my first thread, so forgive me if I don't explain fully :-) I have a simple spreadsheet that I use for bank reconciliation, a check register if you will. Anyway, I have a column where I place an 'X' if the check has been cleared/reconciled or not. If the field is blank (not 'X') I would like to then take the numeric value of the check from another column and add that check value to calculate the ending balance. The formula I use right now to enter the ending balance is this ---> =IF(AND(ISBLANK(F3512),ISBLANK(G3512)),"",H3511-F3512+G3512).
    Is there a way to calculate all this on the fly based on unchecked items and their values? I can provide an attachment if needed. Appreciate the help!

  2. #2
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: Calculate ending balance based on un-checked items in another column

    Hi jdhomeguy,

    welcome to the forum.
    Yes, please provide the attachment with your expected results. thanks.

    Regards,
    DILIPandey
    <click on below * if this helps>
    DILIPandey, Excel rMVP
    +919810929744 (India), +971528225509 (Dubai), [email protected]

  3. #3
    Registered User
    Join Date
    01-31-2013
    Location
    Chicago, Illinois
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Calculate ending balance based on un-checked items in another column

    Here's the attach. It's the 'Memo Balance' - Column I that I'm doing manually and would like to have it calculated.
    Attached Files Attached Files

  4. #4
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: Calculate ending balance based on un-checked items in another column

    Maybe in I6

    Please Login or Register  to view this content.
    Copy down
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  5. #5
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: Calculate ending balance based on un-checked items in another column

    okay.. don't u need to consider credit column ?
    Also, I believe you need sum as per dates i.e., 1/31/13's entries should be considered for 1/31/13's total.. correct ?

    Your example has not covered all the points, suggest you to come up with all possible situations so that you get complete solution else you'll keep adding change requests here in this thread

    Regards,
    DILIPandey
    <click on below * if this helps>

  6. #6
    Registered User
    Join Date
    01-31-2013
    Location
    Chicago, Illinois
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Calculate ending balance based on un-checked items in another column

    You're right Dili. Would need to consider the credit column as well. So the value of the check/item is either Column F(Debit) OR Column G (Credit)

  7. #7
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: Calculate ending balance based on un-checked items in another column

    okay... and this will be for that day only.. and there could be multiple entry of a single date... correct?

    Suggest you to think on all these possibilities and then come up with a concrete logic.. thanks.


    Regards,
    DILIPandey
    <click on below * if this helps>

  8. #8
    Registered User
    Join Date
    01-31-2013
    Location
    Chicago, Illinois
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Calculate ending balance based on un-checked items in another column

    Correct. Pretty sure that's it as I can't see anything else besides including credits and multiple entries for a given day.

  9. #9
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: Calculate ending balance based on un-checked items in another column

    Okay.. considering "X", date, debit , credit, and balance columns, use below formula:-


    =IF(E10="X","",SUMPRODUCT(($C$6:$C10=$C10)*($F$6:$F10))+SUMPRODUCT(($C$6:$C10=$C10)*($G$6:$G10))+$H10)
    see attached:- Bank Register.xlsx

    Regards,
    DILIPandey
    <click on below * if this helps>

  10. #10
    Registered User
    Join Date
    01-31-2013
    Location
    Chicago, Illinois
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Calculate ending balance based on un-checked items in another column

    I downloaded your attach and removed 'X' from cell E7 which was a credit to test both debits and credits that were un-reconciled. With that change, I expected the memo balance in I10 to be 100.02 (42.00 in debits -10.73 in credits + 68.75 balance in H10). I've attached with that change - am I missing something?
    Attached Files Attached Files

  11. #11
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: Calculate ending balance based on un-checked items in another column

    E7 belongs to date 1/10/13 and,
    I10 belongs to date 1/31/13

    so both the date are different.. and thats what I already confirmed from you ... correct ?

    Regards,
    DILIPandey
    <click on below * if this helps>

  12. #12
    Registered User
    Join Date
    01-31-2013
    Location
    Chicago, Illinois
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Calculate ending balance based on un-checked items in another column

    Guess I really didn't understand what you meant by including dates into this logic, sorry about that. But basically =H6+SUMIF($E$6:$E6,"<>x",F$6:F6) works if it could just account for credits (column G) as well. In short, this is much like a paper check register. Column H is the running account Balance taking into consideration ALL debits and credits to calculate your ending balance on a given day and that balance does not take into account whether items are actually reconciled at the bank or not (the X in column E). Column G (memo balance) is the same thing except it DOES take into account whether a debit or credit item is part of the same balance based on whether it is checked in column E or not.

  13. #13
    Registered User
    Join Date
    01-31-2013
    Location
    Chicago, Illinois
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Calculate ending balance based on un-checked items in another column

    Better to show by example, so here's an attached spreadsheet doing everything manually in the Memo Balance column. Any formula posted should be put in the column next to that so that it is clear by example that it comes out to the same running balances.
    Attached Files Attached Files

  14. #14
    Registered User
    Join Date
    01-31-2013
    Location
    Chicago, Illinois
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Calculate ending balance based on un-checked items in another column

    Guess I'll try another forum.....

  15. #15
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: Calculate ending balance based on un-checked items in another column

    See the attachment where I have given a formula which achieves results as you shown in "memo balance" column and I hope your have considered all the criteria this time while providing "memo balance"


    Bank Register-updated.xlsx


    Regards,
    DILIPandey
    <click on below * if this helps>

  16. #16
    Registered User
    Join Date
    06-04-2004
    Posts
    1

    Re: Calculate ending balance based on un-checked items in another column

    This formula you did works for me. I'm having trouble trying to get the =IF(ISERROR command to work with it so I don't get the #VALUE! returned to a blank cell.....Any idea? =H74+SUMIF($C$74:$C74,"<>X",F$74:F74)

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1