Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Excel Banking Summary Sheet  (Read 10190 times)

0 Members and 1 Guest are viewing this topic.

soybean



    Genius
  • The first soybean ever to learn the computer.
  • Thanked: 469
  • Computer: Specs
  • Experience: Experienced
  • OS: Windows 10
Re: Excel Banking Summary Sheet
« Reply #15 on: September 01, 2011, 07:52:32 AM »
I would want cell B1 to display what is being shown in cell F5. But, if I make a deposit or withdrawal in either cell D6 or E6, which would cause the cell F6 to show the new balance, I want the cell B1 to automatically update to the new balance (or automatically go from F5 to F6).
I can't give you a solution in Excel.  I will say that I believe Microsoft Access would be better suited to the application you want to develop.  With Access, I believe a Query or Report could be formatted to display what you want, including the Balance at the top of the report.

cstaniszewski



    Greenhorn

    • Experience: Beginner
    • OS: Unknown
    Re: Excel Banking Summary Sheet
    « Reply #16 on: September 01, 2011, 11:39:51 AM »
    Okay. I'd have to learn Access, but I will also try that.

    kyle_engineer

      Topic Starter


      Intermediate
    • 010010110101100
    • Thanked: 4
      • Yes
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Windows 7
    Re: Excel Banking Summary Sheet
    « Reply #17 on: September 01, 2011, 05:51:26 PM »
    OK... here we go. I think should do alright. :)




    Now I'll go 1 cell at a time...

    A2:
    Code: [Select]
    =LOOKUP(9.99999999999999E+307,G:G)
    This will return the value in the last cell in the G column.

    The "E" and "F" columns are simple straight numbers. The only snag that I was coming across, is that in order to make the math work properly, you have to manually add the "-" (minus) symbol to the "withdrawal" column. I wanted to find a way around that, but I couldn't find anything.

    G2:
    Code: [Select]
    =IF(AND(ISBLANK(E2),ISBLANK(F2)),"",SUM(E2,F2))
    This code only applies to G2, although it's almost the same as the rest of the G column, which is:

    Code: [Select]
    =IF(AND(ISBLANK(E3),ISBLANK(F3)),"",SUM(E3,F3,G2))All it is is adding the previous G cell to the SUM at the end.

    Then on the formatting, I just made columns E through G money format, and then I used conditional formatting to make it all red when negative values occur.

    Conditional Formatting:
    Format>Conditional Formatting
    Cell Value Is - less than or equal to - 0

    Then format it however you want the negatives to show.

    If this works for what you want, then that's great. :D Otherwise let me know... :)

    Sincerely,
    kyle_engineer
    "Any answer is only as good as it satisfies the question." - Me

    0000000100101011000 -
    010010010010000001001100010011110100110 001000000010110010100111101010101

    soybean



      Genius
    • The first soybean ever to learn the computer.
    • Thanked: 469
    • Computer: Specs
    • Experience: Experienced
    • OS: Windows 10
    Re: Excel Banking Summary Sheet
    « Reply #18 on: September 01, 2011, 06:16:14 PM »
    The only snag that I was coming across, is that in order to make the math work properly, you have to manually add the "-" (minus) symbol to the "withdrawal" column. I wanted to find a way around that, but I couldn't find anything.
    Try putting a minus sign in front of the cell reference for column F in your formula, as follows:
    Code: [Select]
    =IF(AND(ISBLANK(E3),ISBLANK(F3)),"",SUM(E3,-F3,G2))Then, you won't need to enter the numbers in column F as negative numbers.   

    kyle_engineer

      Topic Starter


      Intermediate
    • 010010110101100
    • Thanked: 4
      • Yes
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Windows 7
    Re: Excel Banking Summary Sheet
    « Reply #19 on: September 01, 2011, 08:47:26 PM »
    LOL! Thanks. I just realized that that would totally work. :) I was using the SUMIF function, and it didn't work with that. So there it is.

    Code: [Select]
    =IF(AND(ISBLANK(E3),ISBLANK(F3)),"",SUM(E3,-F3,G2))
    is all that is needed to repeat the G column all the way down... :) Just copy and paste all the way and you're golden! :) Thanks soybean!
    "Any answer is only as good as it satisfies the question." - Me

    0000000100101011000 -
    010010010010000001001100010011110100110 001000000010110010100111101010101

    cstaniszewski



      Greenhorn

      • Experience: Beginner
      • OS: Unknown
      Re: Excel Banking Summary Sheet
      « Reply #20 on: September 02, 2011, 12:06:14 PM »
      It works GREAT!! Thank you guys SOOOO much. That is exactly what I was looking for.

      patio

      • Moderator


      • Genius
      • Maud' Dib
      • Thanked: 1769
        • Yes
      • Experience: Beginner
      • OS: Windows 7
      Re: Excel Banking Summary Sheet
      « Reply #21 on: September 02, 2011, 05:37:31 PM »
      HuH ? ?
      " Anyone who goes to a psychiatrist should have his head examined. "

      soybean



        Genius
      • The first soybean ever to learn the computer.
      • Thanked: 469
      • Computer: Specs
      • Experience: Experienced
      • OS: Windows 10
      Re: Excel Banking Summary Sheet
      « Reply #22 on: September 02, 2011, 06:05:13 PM »
      HuH ? ?
      This thread got off to a confusing start, as you know.  But now, he's saying the formulas posted by kyle_engineer, along with the change I suggested in reply #18, makes the spreadsheet work the way he wants.