+ Reply to Thread
Results 1 to 5 of 5

How do I keep a running total?

  1. #1
    Registered User
    Join Date
    07-22-2007
    Posts
    27

    How do I keep a running total?

    I hope I can explain this enough to get some help.

    I want to keep track of the total amout of of a product in a month. I will be adding to this total a few times each month and taking away from the total each day. I need a cell I can reference from another sheet that will give me this total. Cells A1 thru A31 are the days of the month, Cells B1 thru B31 are the number used each day, Cells C1 thru C31 are the number added to the stock occasionally, Cells D1 thru D31 are the daily totals.
    I need Cell D32 to equal the total on any given day of the month, this is the cell I will be referencing.
    Can this be accomplished?

    Thanks for any and all help.

    Kenny

  2. #2
    Forum Contributor Kieran's Avatar
    Join Date
    10-02-2003
    Location
    Perth, Western Australia
    MS-Off Ver
    Office 2003
    Posts
    109
    Kenny,

    Could you post a sample of the worksheet please?
    Kieran

  3. #3
    Registered User
    Join Date
    07-22-2007
    Posts
    27
    Kieran,
    Here is a sample worksheet that I am working on.
    What I would like to see is the total in Cell D35 to update with the total on any given day of the month. In my sample sheet the date is August the 11th and as each day passes there will be more items sold and possibly received. Cell D35 will keep track of this each day as the entered received and and sold items are updated daily.

    Thanks for any help you can provide

    Kenny
    Attached Files Attached Files

  4. #4
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,525
    this seems to work

    =IF(OR(B3>0,C3>0),D2+B3-C3,"")
    =IF(OR(B4>0,C4>0),D3+B4-C4,"")
    =IF(OR(B5>0,C5>0),D4+B5-C5,"")
    etc

    D35 =D2+SUM(B3:B33)-SUM(C3:C33)

  5. #5
    Registered User
    Join Date
    07-22-2007
    Posts
    27
    Davesexcel,
    It looks like that does exactly what I need. Thanks so much, as always you guys have helped again.

    Kenny

+ 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