Closed Thread
Results 1 to 4 of 4

Copying Sum Formulas

Hybrid View

  1. #1
    Justin Hoffmann
    Guest

    Copying Sum Formulas

    Hello,

    In a lot of my work, I take monthly data and compress it into quarterly data
    for reports. I use the Sum function to do this and I am looking for an easy
    way to replicate the formula.

    Here's my problem: Say I have data in a column covering January through
    December. Elsewhere, I have a formula to calculate the First Quarter
    results SUM(JAN:MAR). But when I copy this formula, I usually end up with
    something like this in the subsequent cells:

    SUM(FEB:APR)
    SUM(MAR:MAY)
    SUM(APR:JUN)
    And so forth.

    I realize that this is because of the position of the formulas in relation
    to the original data on the spreadsheet. I could simply copy and paste the
    formula every three spaces down, but I don't want to have unused space
    between my quarterly formulas.

    Is there something I can do to the original formula so that when I copy it,
    it knows to move down three cells, rather than one? I.e., so I can copy it
    many times and get this:

    SUM(JAN:MAR)
    SUM(APR:JUN)
    SUM(JUL:SEP)
    SUM(OCT:DEC)
    SUM(JAN:MAR)
    And so forth . . . .


    Thanks for your help.


  2. #2
    Peo Sjoblom
    Guest

    Re: Copying Sum Formulas

    It's not a problem but we need to know what JAN:MAR means? Is JAN a defined
    name for a group of cells like A1:A30 or is JAN the name of one cell? If the
    latter you could use

    =SUM(INDEX(MyRange,ROWS($A$1:A1)*3-2):INDEX(MyRange,ROWS($A$1:A1)*3))

    and copy down

    will sum first 3 cells, then starting with the 4th cell next 3 cells and so
    on, this can of course be applied to larger ranges as well and although it
    might be shorter to use OFFSET this version is non volatile whereas OFFSET
    or INDIRECT are not

    --

    Regards,

    Peo Sjoblom

    http://nwexcelsolutions.com



    "Justin Hoffmann" <hoffmann@-NOSPAM-tradepartnership.com> wrote in message
    news:C0890965.28E3%hoffmann@-NOSPAM-tradepartnership.com...
    > Hello,
    >
    > In a lot of my work, I take monthly data and compress it into quarterly
    > data
    > for reports. I use the Sum function to do this and I am looking for an
    > easy
    > way to replicate the formula.
    >
    > Here's my problem: Say I have data in a column covering January through
    > December. Elsewhere, I have a formula to calculate the First Quarter
    > results SUM(JAN:MAR). But when I copy this formula, I usually end up with
    > something like this in the subsequent cells:
    >
    > SUM(FEB:APR)
    > SUM(MAR:MAY)
    > SUM(APR:JUN)
    > And so forth.
    >
    > I realize that this is because of the position of the formulas in relation
    > to the original data on the spreadsheet. I could simply copy and paste
    > the
    > formula every three spaces down, but I don't want to have unused space
    > between my quarterly formulas.
    >
    > Is there something I can do to the original formula so that when I copy
    > it,
    > it knows to move down three cells, rather than one? I.e., so I can copy
    > it
    > many times and get this:
    >
    > SUM(JAN:MAR)
    > SUM(APR:JUN)
    > SUM(JUL:SEP)
    > SUM(OCT:DEC)
    > SUM(JAN:MAR)
    > And so forth . . . .
    >
    >
    > Thanks for your help.
    >




  3. #3
    Justin Hoffmann
    Guest

    Re: Copying Sum Formulas

    JAN (for January) is any particular cell. Let's say it is A1, February is
    A2, March is A3, and so on.

    So my first formula is SUM(A1:A3). But when I copy it to a cell below, I
    get SUM(A2:A4), when what I really want is SUM(A4:A6), followed by
    SUM(A7:A9), and SUM(A10:A12) to round out the year.

    I also want to be able to use this formula across columns as well.

    I tried playing around with the formula you gave below, but I'm really a
    novice when it comes to excel formulas, and it gives me a #NAME? error.



    in article OaPMYPTdGHA.536@TK2MSFTNGP02.phx.gbl, Peo Sjoblom at
    peo.sjoblom@nw^^excelsolutions.com wrote on 5/11/06 3:49 PM:

    > It's not a problem but we need to know what JAN:MAR means? Is JAN a defined
    > name for a group of cells like A1:A30 or is JAN the name of one cell? If the
    > latter you could use
    >
    > =SUM(INDEX(MyRange,ROWS($A$1:A1)*3-2):INDEX(MyRange,ROWS($A$1:A1)*3))
    >
    > and copy down
    >
    > will sum first 3 cells, then starting with the 4th cell next 3 cells and so
    > on, this can of course be applied to larger ranges as well and although it
    > might be shorter to use OFFSET this version is non volatile whereas OFFSET
    > or INDIRECT are not




  4. #4
    Peo Sjoblom
    Guest

    Re: Copying Sum Formulas

    Then you can use the formula I gave you, assume all the cells are A1:A12

    =SUM(INDEX($A$1:$A$12,ROWS($A$1:A1)*3-2):INDEX($A$1:$A$12,ROWS($A$1:A1)*3))


    copy down will sum A1:A3, A4:A6 and so on


    --

    Regards,

    Peo Sjoblom

    http://nwexcelsolutions.com


    "Justin Hoffmann" <hoffmann@-NOSPAM-tradepartnership.com> wrote in message
    news:C0891370.2B54%hoffmann@-NOSPAM-tradepartnership.com...
    > JAN (for January) is any particular cell. Let's say it is A1, February is
    > A2, March is A3, and so on.
    >
    > So my first formula is SUM(A1:A3). But when I copy it to a cell below, I
    > get SUM(A2:A4), when what I really want is SUM(A4:A6), followed by
    > SUM(A7:A9), and SUM(A10:A12) to round out the year.
    >
    > I also want to be able to use this formula across columns as well.
    >
    > I tried playing around with the formula you gave below, but I'm really a
    > novice when it comes to excel formulas, and it gives me a #NAME? error.
    >
    >
    >
    > in article OaPMYPTdGHA.536@TK2MSFTNGP02.phx.gbl, Peo Sjoblom at
    > peo.sjoblom@nw^^excelsolutions.com wrote on 5/11/06 3:49 PM:
    >
    >> It's not a problem but we need to know what JAN:MAR means? Is JAN a
    >> defined
    >> name for a group of cells like A1:A30 or is JAN the name of one cell? If
    >> the
    >> latter you could use
    >>
    >> =SUM(INDEX(MyRange,ROWS($A$1:A1)*3-2):INDEX(MyRange,ROWS($A$1:A1)*3))
    >>
    >> and copy down
    >>
    >> will sum first 3 cells, then starting with the 4th cell next 3 cells and
    >> so
    >> on, this can of course be applied to larger ranges as well and although
    >> it
    >> might be shorter to use OFFSET this version is non volatile whereas
    >> OFFSET
    >> or INDIRECT are not

    >
    >




Closed 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