+ Reply to Thread
Results 1 to 9 of 9

Adding random amounts in a check register

  1. #1
    Registered User
    Join Date
    08-25-2016
    Location
    Birmingham, AL
    MS-Off Ver
    2010
    Posts
    8

    Adding random amounts in a check register

    I USED to know this stuff, but since being diagnosed with lupus 14 years ago, I haven't had a reason to work extensively with Excel and Access like I used to. So here's the project I've set to get the little grey cells working again: a check register.

    All I'm doing is copying over the CSV version of my bank's register, but I'm adding a column for Category. I will only categorize a few things and those are basically related to taxes. So I have Charity, Medical, Income, Taxes.

    These items naturally are scattered throughout the register. It's already going to be tedious because I have to start over from January 1 to find and label these items (in my very first post I tell of discovering my entries were all out of order). So instead of having to select individual cells and add them together, is there a way I can find and add all the "charity" entries and stick a running total somewhere. And the same for the other items.

    Understand what I'm trying to say? Just a way around what I normally would do with Quicken and create reports at tax time.

    Thanks for your help!

    CJ

  2. #2
    Registered User
    Join Date
    08-25-2016
    Location
    Birmingham, AL
    MS-Off Ver
    2010
    Posts
    8

    Re: Adding random amounts in a check register

    Oh well this is embarrassing. Just as I found my own solution to my first post, I just found the solution to this one. But perhaps someone could tell me how I did this--I don't know if I got it from a template or if it was a setting I selected. (One problem I have with lupus is that my memory is not so good. Sharp one day, dull for a month.) All my headings have little down arrows. Discovered I could hit the down arrow on category and select "charity" and get a total right there.

    Not sure where to put these totals as the rows will change once I de-select the particular category...

  3. #3
    Valued Forum Contributor
    Join Date
    11-22-2014
    Location
    Arizona, USA
    MS-Off Ver
    Office 365
    Posts
    973

    Re: Adding random amounts in a check register

    If all of your categories are in the same column and the amounts are in another than this is possible as well as the dates as I would imagine you want to do this based on time.

    You would either on another sheet or off to the side (Your preference) personally another sheet would be best leaving the data as a data sheet (Renamed as data for clear representation).

    =SUMIFS(SumRange,CriteriaRange1,CriteriaValue1,CriteriaRange2,CriteriaValue2...)

    The above formula is the format of a SUMIFS. This allows us to sum a range of data based on multiple criterias. Take note that this is not SUMIF <-- No S at the end. SUMIF will allow you to sum a range based on one criteria only... IMO I don't think the single form of this should ever be used as the syntax is flipped, causes confusion for some and really is not needed as the plural version can do a single criteria if the operator would like!

    Now your sheet will have the data in columns... Lets pretend column A on the DATA sheet is your Dates column. B Being your Categories and C being your Amounts

    You would setup your report tab (Lets call it Report) with a list of categories either as column headers or individual lines... again this is a preference.

    For now I am going to assume you list them out in rows....

    Lets assume your first category you have listed out is in B5 and you want to show the sum in C5 Right next to it... Above C5 you have January... Only dont type January type in C4 1/1/2016 and then right click on the cell to format it. In this window you can choose CUSTOM at the bottom of the list and type in the Custom window MMMM. This will display the date as Month name but will retain the value of 1/1/2016.

    Your formula can now utilize that date to show the totals within that Month.

    Please Login or Register  to view this content.
    Again -

    Data!$C:$C = Amounts
    Data!$B:$B = Categories
    Data!$A:$A = Dates
    C$4 = Date (This is 1/1/2016 in the example... and by using EOMonth() we were able to also use 1/31/2016)
    $C5 = Current Category (In the example would equal your "Charity" Category)

    Please take a moment to go through this and let me know what you got or have questions on. I know you said you use to do this so let me know if anything needs further clarification or if you got it from her.

    Cheers - ELeGault
    -If you think you are done, Start over - ELeGault

  4. #4
    Registered User
    Join Date
    08-25-2016
    Location
    Birmingham, AL
    MS-Off Ver
    2010
    Posts
    8

    Re: Adding random amounts in a check register

    Thanks so much for all the effort you put into your reply! I will get the basics formatted over the next day or two and then try your method.

  5. #5
    Valued Forum Contributor
    Join Date
    11-22-2014
    Location
    Arizona, USA
    MS-Off Ver
    Office 365
    Posts
    973

    Re: Adding random amounts in a check register

    Sounds good - The drop down is called Data Validation > List

  6. #6
    Registered User
    Join Date
    08-25-2016
    Location
    Birmingham, AL
    MS-Off Ver
    2010
    Posts
    8

    Re: Adding random amounts in a check register

    I don't know why my first replies don't show up and I have to try again. Hope I can remember how I put it earlier...

    Basically I've got my old check register attempt that seemed to work fine--but I discovered the transactions were out of order. So I made a new one, added a numbered row that I can always use for sorting back to the original order, and then proceeded to categorize some of the transactions.

    Here's the problem: in the original register, I have no idea how I did it, but I am able to filter by a category, say "Charity" and I'll get all the charitable contributions--with a subtotal at the bottom. The formula for that total (on an extra line below the transactions) is =SUBTOTAL(109,[Amount]). On my new worksheet, I can filter the category, but I can't make it subtotal or autosum or anything. There is no blank row at the bottom for me to try to enter the above formula.

    It's driving me crazy because the old version works just as I would like it to, but I don't know how to apply it to the new worksheet. Any ideas?

    Thanks!

  7. #7
    Valued Forum Contributor
    Join Date
    11-22-2014
    Location
    Arizona, USA
    MS-Off Ver
    Office 365
    Posts
    973

    Re: Adding random amounts in a check register

    So there are multiple things that can be going on with the old one.. The first is likely the right one based on the formula you have outlined and that is a Table.

    Highlight your entire dataset and hit CTRL+T or CTRL+L or go to the INSERT tab up top and hit Table.
    You should have your headers selected, so the box for "My data has headers" should be selected.

    Next you will go to the design tab which will only be visible when you are inside your table (Any cell selected in the table). You will then check off the option to add a Total row to your table (Should be visible near the center of the ribbon)

    Now you can go to the bottom row of the data, here there are drop downs to choose how you would like to total your data... Sum, Avg, Count, etc...

    Now your table can be filtered down to a category and the total should reflect only that in which is visible!


    Your next option... PIVOT TABLE
    This is an effective tool for ripping apart data.

    Again, highlight the data (or table if it is now a table) and go to the Insert tab. Here select PIVOT TABLE.
    Now you can build out your pivot table to fit your needs. I will not describe a layout as this becomes overly opinionated and there are 6 ways to sunday to get a finalized view.


    The last option would be to setup dynamic formulas to recognize an option selected in a drop down list... if you are interested in this option feel free to reach out, but I feel that based on your description of first book it is a TABLE.


    If you have difficulties in accomplishing this feel free to reach out again... It is always quickest if we post a file with a Before tab and after tab that may not be functioning but illustrates the goal with a look and feel. Someone in the community can always create/re-create visuals with a sample file. As always make sure your data is scrubbed for any sensitive materials (Especially bank information/account numbers etc...) before posting for your protection!

    Good luck (And remember to mark resolved if this ends up being the answer you have been looking for)

    Cheers

  8. #8
    Registered User
    Join Date
    08-25-2016
    Location
    Birmingham, AL
    MS-Off Ver
    2010
    Posts
    8

    Re: Adding random amounts in a check register

    Only just now got back to this project. I had already formatted my data as a table...but it won't let me check the box for total row. Any idea why? I had applied "Table Style Medium 2" --is there something about that particular style that doesn't allow totals? [EDIT: I took a look at the old worksheet and it's the same table style but it DOES have the total box checked.]

    If I have some time in the next few days, I will try to create a dummy file to post.

    I appreciate your patience with me!

    Another edit

    So I did the obvious thing: I made a copy of the old worksheet and then replaced the old data with the new data--and now I've got subtotals! I don't have the satisfaction of knowing how it was done, but it works. At least the quick trial I gave it seems to work... Probably won't get to work on it again till Wednesday to really give it a good look.
    Last edited by CJ Mac; 08-29-2016 at 06:13 PM.

  9. #9
    Valued Forum Contributor
    Join Date
    11-22-2014
    Location
    Arizona, USA
    MS-Off Ver
    Office 365
    Posts
    973

    Re: Adding random amounts in a check register

    Yea it is odd and without seeing the NON working file to test changes I cannot say for certain what is causing the issue.

    If you want, clear sensitive data and post it with the table so that we can offer suggestions.

    Cheers

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Check Register Formula possible?
    By wzm108it in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 05-03-2016, 11:48 AM
  2. Help! Need Check Register
    By bookbuyer in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-30-2016, 05:43 PM
  3. formula to auto fill date and amounts from checkbook register to budget sheet
    By Magneticwood in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-02-2012, 06:30 AM
  4. Check Register Spreadsheet
    By pineacre in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-04-2011, 04:54 AM
  5. balancing check register
    By Faye in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 07-30-2006, 01:10 AM
  6. [SOLVED] check register template
    By Michele in forum Excel General
    Replies: 3
    Last Post: 01-19-2005, 02:06 PM
  7. Help with my check register please
    By David A in forum Excel General
    Replies: 0
    Last Post: 01-12-2005, 09:08 PM

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