+ Reply to Thread
Results 1 to 3 of 3

Weekly Total ????

  1. #1
    Registered User
    Join Date
    03-15-2004
    Location
    OR, USA
    Posts
    51

    Weekly Total ????

    Hello to All,

    I have a list of daily customer orders. Column A is name of customer, Column B is Date and Column C is number of pieces ordered. I have a daily running total in Column D, how do I create a weekly Running Total with the week starting Monday and Ending Friday?
    Regards,
    Nathan Sargeant

    TIA

  2. #2
    Forum Expert
    Join Date
    12-24-2004
    Location
    Sweden
    Posts
    1,256
    Try this:

    Customer.......Date.........Pieces.....RunTot
    Adam.............03/04/05..11............=C2
    Bob................03/04/05..5..............=IF(WEEKNUM(B3,2)>WEEKNUM(B2,2),C3,C2+C3)
    Copy down the formula

    It will look for a weeknum greater then the previous. If so start a new RunTot otherwise continue sum the running total.

    Ola Sandström

  3. #3
    Registered User
    Join Date
    03-15-2004
    Location
    OR, USA
    Posts
    51
    Hello to All,

    I have a list of daily customer orders. Column A is name of customer, Column B is Date and Column C is number of pieces ordered. I have a daily running total in Column D, how do I create a weekly Running Total with the week starting Monday and Ending Friday?
    Regards,
    Nathan Sargeant

    TIA



    Quote Originally Posted by olasa
    Try this:

    Customer.......Date.........Pieces.....RunTot
    Adam.............03/04/05..11............=C2
    Bob................03/04/05..5..............=IF(WEEKNUM(B3,2)>WEEKNUM(B2,2),C3,C2+C3)
    Copy down the formula

    It will look for a weeknum greater then the previous. If so start a new RunTot otherwise continue sum the running total.

    Ola Sandström
    Thanks, I think I'm on the right track, but I need to clarify a little bit.

    My running total starts over everyday...... =IF(B3=B4,D3+C4,C4)

    The next Column Is a Total For The Day...... =IF(B4<>B3,D4,"")

    So I need Column F to total Monday thru Friday

    Thanks again

    Nathan

+ 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